12 lines
284 B
C#
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; }
|
|
}
|
|
} |