12 lines
247 B
C#
12 lines
247 B
C#
|
|
using System;
|
|||
|
|
using Umbraco.Core.Models.EntityBase;
|
|||
|
|
|
|||
|
|
namespace Umbraco.Core.Models
|
|||
|
|
{
|
|||
|
|
public interface IAuditItem : IAggregateRoot
|
|||
|
|
{
|
|||
|
|
string Comment { get; }
|
|||
|
|
AuditType AuditType { get; }
|
|||
|
|
int UserId { get; }
|
|||
|
|
}
|
|||
|
|
}
|