Files
irc-netcore-api/IRaCIS.Core.Domain/BaseModel/ISoftDelete.cs
T
hang 3701d8bcd9
continuous-integration/drone/push Build is passing
精简实体准备
2024-08-15 23:53:25 +08:00

20 lines
342 B
C#

using System;
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>
{
}
}