IW4M-Admin/SharedLibraryCore/Dtos/ClientInfo.cs

12 lines
284 B
C#
Raw Normal View History

2022-01-26 11:32:16 -05:00
using Data.Models.Client;
namespace SharedLibraryCore.Dtos
2018-02-21 20:29:23 -05:00
{
public class ClientInfo
{
public string Name { get; set; }
public int ClientId { get; set; }
public int LinkId { get; set; }
2022-01-26 11:32:16 -05:00
public EFClient.Permission Level { get; set; }
2018-02-21 20:29:23 -05:00
}
2022-01-26 11:32:16 -05:00
}