mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
17 lines
346 B
C#
17 lines
346 B
C#
using Remotely.Shared.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Remotely.Tests
|
|
{
|
|
public class TestData
|
|
{
|
|
public static RemotelyUser TestAdmin1 { get; } = new RemotelyUser()
|
|
{
|
|
UserName = "testadmin1@test.com",
|
|
IsAdministrator = true
|
|
};
|
|
}
|
|
}
|