Files
Umbraco-CMS/src/Umbraco.Core/Models/IAuditItem.cs

12 lines
247 B
C#
Raw Normal View History

using System;
using Umbraco.Core.Models.EntityBase;
namespace Umbraco.Core.Models
{
public interface IAuditItem : IAggregateRoot
{
string Comment { get; }
AuditType AuditType { get; }
int UserId { get; }
}
}