14 lines
556 B
C#
14 lines
556 B
C#
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;
|
|
}
|