Files
IM_NEW/DomainCommons/ISoftDelete.cs
T
2026-05-09 17:06:30 +08:00

9 lines
138 B
C#

namespace IM.DomainCommons
{
public interface ISoftDelete
{
bool IsDeleted { get; }
void SoftDelete();
}
}