-
-
Notifications
You must be signed in to change notification settings - Fork 44
sharedlibrarycoredtos AuditInfo
RaidMax edited this page May 21, 2023
·
1 revision
data transfer class for audit information
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Dtos
SharedLibraryCore.Dtos.AuditInfo[[AuditInfo]]
end
Type | Name | Methods |
---|---|---|
string |
Action what audit action occured |
get, set |
string |
Data additional comment data about the audit event |
get, set |
string |
NewValue new value |
get, set |
string |
OldValue previous value |
get, set |
int |
OriginId id of the origin entity |
get, set |
string |
OriginName name of the origin entity |
get, set |
Nullable <int > |
TargetId id of the target entity |
get, set |
string |
TargetName name of the target entity |
get, set |
DateTime |
When when the audit event occured |
get, set |
data transfer class for audit information
public AuditInfo()
public string OriginName { get; set; }
name of the origin entity
public int OriginId { get; set; }
id of the origin entity
public string TargetName { get; set; }
name of the target entity
public Nullable<int> TargetId { get; set; }
id of the target entity
public DateTime When { get; set; }
when the audit event occured
public string Action { get; set; }
what audit action occured
public string Data { get; set; }
additional comment data about the audit event
public string OldValue { get; set; }
previous value
public string NewValue { get; set; }
new value
Generated with ModularDoc