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