-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodelsserver EFServer
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph Data.Models.Server
Data.Models.Server.EFServer[[EFServer]]
end
subgraph Data.Abstractions
Data.Abstractions.IUniqueId[[IUniqueId]]
class Data.Abstractions.IUniqueId interfaceStyle;
end
subgraph Data.Models
Data.Models.SharedEntity[[SharedEntity]]
end
Data.Abstractions.IUniqueId --> Data.Models.Server.EFServer
Data.Models.SharedEntity --> Data.Models.Server.EFServer
Type | Name | Methods |
---|---|---|
string |
EndPoint |
get, set |
Nullable <Game > |
GameName |
get, set |
string |
HostName |
get, set |
long |
Id |
get |
bool |
IsPasswordProtected |
get, set |
string |
PerformanceBucket |
get, set |
int |
Port |
get, set |
long |
ServerId |
get, set |
string |
Value |
get |
public EFServer()
public long ServerId { get; set; }
public int Port { get; set; }
public string EndPoint { get; set; }
public Nullable<Game> GameName { get; set; }
public string HostName { get; set; }
public bool IsPasswordProtected { get; set; }
public string PerformanceBucket { get; set; }
public virtual long Id { get; }
public virtual string Value { get; }
Generated with ModularDoc