Remotely/Tests/TestData.cs
2021-07-29 07:56:04 -07:00

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
};
}
}