fix(finance): make Form990 row DTO use properties (System.Text.Json skips fields)
This commit is contained in:
@@ -3,13 +3,13 @@ namespace ROLAC.API.DTOs.Finance;
|
||||
/// <summary>One Part IX row: a 990 line split across the three functional columns.</summary>
|
||||
public class FunctionalExpenseRowDto
|
||||
{
|
||||
public string LineCode = "";
|
||||
public string Name_en = "";
|
||||
public string? Name_zh;
|
||||
public decimal Program;
|
||||
public decimal ManagementGeneral;
|
||||
public decimal Fundraising;
|
||||
public decimal Total;
|
||||
public string LineCode { get; set; } = "";
|
||||
public string Name_en { get; set; } = "";
|
||||
public string? Name_zh { get; set; }
|
||||
public decimal Program { get; set; }
|
||||
public decimal ManagementGeneral { get; set; }
|
||||
public decimal Fundraising { get; set; }
|
||||
public decimal Total { get; set; }
|
||||
}
|
||||
|
||||
/// <summary>The full Part IX Statement of Functional Expenses for a date range.</summary>
|
||||
|
||||
Reference in New Issue
Block a user