-
-
Notifications
You must be signed in to change notification settings - Fork 44
datamodelsmisc EFInboxMessage
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.Misc
Data.Models.Misc.EFInboxMessage[[EFInboxMessage]]
end
subgraph Stats.Models
Stats.Models.AuditFields[[AuditFields]]
end
Stats.Models.AuditFields --> Data.Models.Misc.EFInboxMessage
Type | Name | Methods |
---|---|---|
EFClient |
DestinationClient |
get, set |
int |
DestinationClientId |
get, set |
int |
InboxMessageId |
get, set |
bool |
IsDelivered |
get, set |
string |
Message |
get, set |
EFServer |
Server |
get, set |
Nullable <long > |
ServerId |
get, set |
EFClient |
SourceClient |
get, set |
int |
SourceClientId |
get, set |
public EFInboxMessage()
public int InboxMessageId { get; set; }
public int SourceClientId { get; set; }
public EFClient SourceClient { get; set; }
public int DestinationClientId { get; set; }
public EFClient DestinationClient { get; set; }
public Nullable<long> ServerId { get; set; }
public EFServer Server { get; set; }
public string Message { get; set; }
public bool IsDelivered { get; set; }
Generated with ModularDoc