Files
irc-netcore-api/IRaCIS.Core.Domain/BaseModel/ISoftDelete.cs
T
hang 40c8a51a31
continuous-integration/drone/push Build is passing
整理数据库实体备注
2024-09-20 18:20:37 +08:00

14 lines
286 B
C#

namespace IRaCIS.Core.Domain.Models;
public interface ISoftDelete<TKey> where TKey : struct
{
public TKey? DeleteUserId { get; set; }
public bool IsDeleted { get; set; }
public DateTime? DeletedTime { get; set; }
}
public interface ISoftDelete : ISoftDelete<Guid>
{
}