7 lines
110 B
C#
7 lines
110 B
C#
namespace Indotalent.Data.Interfaces;
|
|
|
|
public interface IHasIsDeleted
|
|
{
|
|
bool IsDeleted { get; set; }
|
|
}
|