CostCalculationItem/IRaCIS.Core.Domain/BaseModel/IAuditUpdate.cs

17 lines
327 B
C#

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