Remotely/Shared/ViewModels/OrganizationUser.cs
2021-07-29 07:57:31 -07:00

10 lines
216 B
C#

namespace Remotely.Shared.ViewModels
{
public class OrganizationUser
{
public string ID { get; set; }
public string UserName { get; set; }
public bool IsAdmin { get; set; }
}
}