using ROLAC.API.Entities.Base; namespace ROLAC.API.Entities; /// A row of IRS Form 990 Part IX (natural expense line), e.g. "7 — Other salaries and wages". public class Form990ExpenseLine : AuditableEntity, IAuditable { public int Id { get; set; } public string LineCode { get; set; } = null!; // "7", "11b", "16", "24" public string Name_en { get; set; } = null!; public string? Name_zh { get; set; } public int SortOrder { get; set; } public bool IsActive { get; set; } = true; }