Files
free-crm/Core/Domain/Common/IHasIsDeleted.cs
T
2026-07-21 15:36:49 +07:00

8 lines
93 B
C#

namespace Domain.Common;
public interface IHasIsDeleted
{
bool IsDeleted { get; }
}