IW4M-Admin/SharedLibraryCore/Dtos/ClientInfo.cs

18 lines
413 B
C#
Raw Normal View History

2018-02-21 20:29:23 -05:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static SharedLibraryCore.Objects.Player;
2018-02-21 20:29:23 -05:00
2018-04-08 02:44:42 -04:00
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; }
public Permission Level { get; set; }
2018-02-21 20:29:23 -05:00
}
}