添加项目文件。
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
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>
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user