1 sharedlibrarycoredtos AuditInfo
RaidMax edited this page 2023-05-20 22:09:21 -05:00

AuditInfo Public class

Description

data transfer class for audit information

Diagram

  flowchart LR
  classDef interfaceStyle stroke-dasharray: 5 5;
  classDef abstractStyle stroke-width:4px
  subgraph SharedLibraryCore.Dtos
  SharedLibraryCore.Dtos.AuditInfo[[AuditInfo]]
  end

Members

Properties

Public properties

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

Details

Summary

data transfer class for audit information

Constructors

AuditInfo

Source code

public AuditInfo()

Properties

OriginName

public string OriginName { get; set; }
Summary

name of the origin entity

OriginId

public int OriginId { get; set; }
Summary

id of the origin entity

TargetName

public string TargetName { get; set; }
Summary

name of the target entity

TargetId

public Nullable<int> TargetId { get; set; }
Summary

id of the target entity

When

public DateTime When { get; set; }
Summary

when the audit event occured

Action

public string Action { get; set; }
Summary

what audit action occured

Data

public string Data { get; set; }
Summary

additional comment data about the audit event

OldValue

public string OldValue { get; set; }
Summary

previous value

NewValue

public string NewValue { get; set; }
Summary

new value

Generated with ModularDoc