16 lines
396 B
C#
Raw Normal View History

2022-04-19 18:43:58 -05:00
using System;
using Data.Models.Client;
2022-01-26 10:32:16 -06:00
namespace SharedLibraryCore.Dtos
2018-02-21 19:29:23 -06:00
{
2022-04-19 18:43:58 -05:00
public class ClientInfo
2018-02-21 19:29:23 -06:00
{
public string Name { get; set; }
public int ClientId { get; set; }
public int LinkId { get; set; }
2022-01-26 10:32:16 -06:00
public EFClient.Permission Level { get; set; }
2022-04-19 18:43:58 -05:00
public DateTime LastConnection { get; set; }
public bool IsMasked { get; set; }
2018-02-21 19:29:23 -06:00
}
2022-04-19 18:43:58 -05:00
}