禁用时间修改

This commit is contained in:
2022-04-01 10:04:33 +08:00
parent fb2586e5c1
commit a0690552e8
13 changed files with 70 additions and 111 deletions
+3 -1
View File
@@ -2,10 +2,12 @@
namespace IRaCIS.Core.Domain.Models
{
public interface ISoftDelete
{
bool IsDeleted { get; set; }
public DateTime? DeletedTime { get; set; }
}
}