9 lines
138 B
C#
9 lines
138 B
C#
namespace IM.DomainCommons
|
|
{
|
|
public interface ISoftDelete
|
|
{
|
|
bool IsDeleted { get; }
|
|
void SoftDelete();
|
|
}
|
|
}
|