IW4M-Admin/SharedLibraryCore/Dtos/ClientInfo.cs
2022-01-26 15:26:25 -06:00

12 lines
284 B
C#

using Data.Models.Client;
namespace SharedLibraryCore.Dtos
{
public class ClientInfo
{
public string Name { get; set; }
public int ClientId { get; set; }
public int LinkId { get; set; }
public EFClient.Permission Level { get; set; }
}
}