-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoredtos ClientInfo
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Dtos
SharedLibraryCore.Dtos.ClientInfo[[ClientInfo]]
end
Type | Name | Methods |
---|---|---|
int |
ClientId |
get, set |
Game |
Game |
get, set |
bool |
IsMasked |
get, set |
DateTime |
LastConnection |
get, set |
Permission |
Level |
get, set |
int |
LinkId |
get, set |
string |
Name |
get, set |
public ClientInfo()
public string Name { get; set; }
public int ClientId { get; set; }
public int LinkId { get; set; }
public Permission Level { get; set; }
public DateTime LastConnection { get; set; }
public Game Game { get; set; }
public bool IsMasked { get; set; }
Generated with ModularDoc