IW4M-Admin/SharedLibraryCore/Dtos/ClientInfo.cs

18 lines
464 B
C#
Raw Normal View History

2022-04-19 19:43:58 -04:00
using System;
using Data.Models;
2022-04-19 19:43:58 -04:00
using Data.Models.Client;
2022-01-26 11:32:16 -05:00
namespace SharedLibraryCore.Dtos
2018-02-21 20:29:23 -05:00
{
2022-04-19 19:43:58 -04:00
public class ClientInfo
2018-02-21 20:29:23 -05:00
{
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; }
2022-04-19 19:43:58 -04:00
public DateTime LastConnection { get; set; }
public Reference.Game Game { get; set; }
public bool IsMasked { get; set; }
2018-02-21 20:29:23 -05:00
}
2022-04-19 19:43:58 -04:00
}