Files
Umbraco-CMS/src/Umbraco.Core/Models/IAuditItem.cs
2017-09-07 22:24:18 +10:00

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; }
}
}