feat(1099): add Form1099BoxId mapping FKs and Expense.PayeeId

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Chris Chen
2026-06-25 16:40:40 -07:00
parent 48ae014def
commit 7809ba9741
3 changed files with 8 additions and 0 deletions
@@ -12,5 +12,8 @@ public class ExpenseCategoryGroup : AuditableEntity, IAuditable
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 List<ExpenseSubCategory> SubCategories { get; set; } = [];
}