-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoredtosmetaresponses ReceivedPenaltyResponse
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.Meta.Responses
SharedLibraryCore.Dtos.Meta.Responses.ReceivedPenaltyResponse[[ReceivedPenaltyResponse]]
SharedLibraryCore.Dtos.Meta.Responses.BaseMetaResponse[[BaseMetaResponse]]
end
SharedLibraryCore.Dtos.Meta.Responses.BaseMetaResponse --> SharedLibraryCore.Dtos.Meta.Responses.ReceivedPenaltyResponse
Type | Name | Methods |
---|---|---|
string |
AutomatedOffense |
get, set |
Nullable <DateTime > |
ExpirationDate |
get, set |
string |
ExpiresInText |
get |
bool |
IsLinked |
get, set |
string |
LengthText |
get |
int |
LinkedClientId |
get, set |
int |
OffenderClientId |
get, set |
string |
OffenderName |
get, set |
string |
Offense |
get, set |
int |
PenaltyId |
get, set |
PenaltyType |
PenaltyType |
get, set |
int |
PunisherClientId |
get, set |
string |
PunisherName |
get, set |
public ReceivedPenaltyResponse()
public int PenaltyId { get; set; }
public int OffenderClientId { get; set; }
public string OffenderName { get; set; }
public string PunisherName { get; set; }
public int PunisherClientId { get; set; }
public PenaltyType PenaltyType { get; set; }
public string Offense { get; set; }
public string AutomatedOffense { get; set; }
public Nullable<DateTime> ExpirationDate { get; set; }
public string ExpiresInText { get; }
public string LengthText { get; }
public bool IsLinked { get; set; }
public int LinkedClientId { get; set; }
Generated with ModularDoc