zeroframework/Services/DeviceCenter/ZeroFramework.DeviceCenter.Domain/Entities/ISoftDelete.cs
2023-12-05 17:22:48 +08:00

8 lines
142 B
C#

namespace ZeroFramework.DeviceCenter.Domain.Entities
{
public interface ISoftDelete
{
bool IsDeleted { get; set; }
}
}