namespace HiVakil.Domain.Entities.LegalForms; public class LegalForm : ApiEntity { public string Title { get; internal set; } = string.Empty; public string Description { get; internal set; } = string.Empty; public LegalFormStatus Status { get; set; } public LegalFormType Type { get; internal set; } }