irc-netcore-api/IRaCIS.Core.Domain/BaseModel/IAuditUpdate.cs

12 lines
245 B
C#

namespace IRaCIS.Core.Domain.Models;
public interface IAuditUpdate<TKey> where TKey : struct
{
public TKey UpdateUserId { get; set; }
public DateTime UpdateTime { get; set; }
}
public interface IAuditUpdate : IAuditUpdate<Guid>
{
}