feat(expense): add Form990ExpenseLine catalog entity and functional-class constants

This commit is contained in:
Chris Chen
2026-06-24 18:47:42 -07:00
parent 9dbb1d38d8
commit f1faa0d435
3 changed files with 43 additions and 0 deletions
@@ -0,0 +1,13 @@
using ROLAC.API.Entities.Base;
namespace ROLAC.API.Entities;
/// <summary>A row of IRS Form 990 Part IX (natural expense line), e.g. "7 — Other salaries and wages".</summary>
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;
}