Interface IAuditTrailEntry
Represents an AuditTrail Entry.
Namespace: Swan.AspNetCore.Models
Syntax
public interface IAuditTrailEntry
Properties
Action
Gets or sets the action.
Declaration
int Action { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | The action. |
DateCreated
Gets or sets the date created.
Declaration
DateTime DateCreated { get; set; }
Property Value
| Type | Description |
|---|---|
| System.DateTime | The date created. |
JsonBody
Gets or sets the json body.
Declaration
string JsonBody { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The json body. |
TableName
Gets or sets the name of the table.
Declaration
string TableName { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The name of the table. |
UserId
Gets or sets the user identifier.
Declaration
string UserId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String | The user identifier. |