Files
16ee7227ae724628806f0dfb2005f1c1200394a5
35 lines
731 B
C#
35 lines
731 B
C#
using Umbraco.Cms.Core.Models.Entities;
|
|||
|
|
|
||
namespace Umbraco.Cms.Core.Models;
|
|||
|
|||
/// <summary>
|
|||
/// Represents an audit item.
|
|||
/// </summary>
|
|||
public interface IAuditItem : IEntity
|
|||
|
|
{
|
||
|
|
/// <summary>
|
||
/// Gets the audit type.
|
|||
|
|
/// </summary>
|
||
AuditType AuditType { get; }
|
|||
|
Cleaning up the log/audit trail usage, removing duplicate and unecessary entries and adding new cols
|
|
||
/// <summary>
|
|||
/// Gets the audited entity type.
|
|||
/// </summary>
|
|||
string? EntityType { get; }
|
|||
|
Cleaning up the log/audit trail usage, removing duplicate and unecessary entries and adding new cols
|
|
||
/// <summary>
|
|||
/// Gets the audit user identifier.
|
|||
/// </summary>
|
|||
int UserId { get; }
|
|||
|
|
|
||
/// <summary>
|
|||
/// Gets the audit comments.
|
|||
/// </summary>
|
|||
string? Comment { get; }
|
|||
|
|
|
||
/// <summary>
|
|||
/// Gets optional additional data parameters.
|
|||
/// </summary>
|
|||
string? Parameters { get; }
|
|||
|
|
}
|