8 lines
93 B
C#
8 lines
93 B
C#
namespace Domain.Common;
|
|
|
|
public interface IHasIsDeleted
|
|
{
|
|
bool IsDeleted { get; }
|
|
}
|
|
|