Files
2026-07-21 14:08:10 +07:00

7 lines
110 B
C#

namespace Indotalent.Data.Interfaces;
public interface IHasIsDeleted
{
bool IsDeleted { get; set; }
}