19 lines
418 B
C#
19 lines
418 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Yi.Framework.Infrastructure.Data.Auditing
|
|
{
|
|
public interface IAuditedObject : ICreationAuditedObject, IModificationAuditedObject
|
|
{
|
|
}
|
|
|
|
public interface IAuditedObject<TUser> : IAuditedObject, ICreationAuditedObject<TUser>, IModificationAuditedObject<TUser>
|
|
{
|
|
|
|
}
|
|
|
|
}
|