Files
blazor-cms/Data/Interfaces/IHasIsDeleted.cs
T
2026-07-21 13:52:43 +07:00

7 lines
110 B
C#

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