Skip to content
Merged

Dev #2215

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public class CreateUpdateFundingHistoryDto
public bool? RenewedFunding { get; set; }
public decimal? ApprovedAmount { get; set; }
public decimal? ReconsiderationAmount { get; set; }
public decimal? OneTimeConsideration { get; set; }
public decimal? TotalGrantAmount { get; set; }
public string? FundingNotes { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ public class FundingHistoryDto : AuditedEntityDto<Guid>
public bool? RenewedFunding { get; set; }
public decimal? ApprovedAmount { get; set; }
public decimal? ReconsiderationAmount { get; set; }
public decimal? OneTimeConsideration { get; set; }
public decimal? TotalGrantAmount { get; set; }
public string? FundingNotes { get; set; }
}
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public class FundingHistory : AuditedAggregateRoot<Guid>, IMultiTenant
public bool? RenewedFunding { get; set; }
public decimal? ApprovedAmount { get; set; }
public decimal? ReconsiderationAmount { get; set; }
public decimal? OneTimeConsideration { get; set; }
public decimal? TotalGrantAmount { get; set; }
public string? FundingNotes { get; set; }
public Guid? TenantId { get; set; }
Expand Down
Loading
Loading