7809ba9741
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
21 lines
713 B
C#
21 lines
713 B
C#
using ROLAC.API.Entities.Base;
|
|
namespace ROLAC.API.Entities;
|
|
|
|
public class ExpenseSubCategory : AuditableEntity, IAuditable
|
|
{
|
|
public int Id { get; set; }
|
|
public int GroupId { get; set; }
|
|
public string Name_en { get; set; } = null!;
|
|
public string? Name_zh { get; set; }
|
|
public int SortOrder { get; set; }
|
|
public bool IsActive { get; set; } = true;
|
|
|
|
public int? Form990LineId { get; set; }
|
|
public Form990ExpenseLine? Form990Line { get; set; }
|
|
|
|
public int? Form1099BoxId { get; set; } // null = not 1099-reportable
|
|
public Form1099Box? Form1099Box { get; set; }
|
|
|
|
public ExpenseCategoryGroup? Group { get; set; }
|
|
}
|