generated from LBHackney-IT/lbh-base-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBaseOperatingBalanceTransaction.cs
104 lines (103 loc) · 5.02 KB
/
BaseOperatingBalanceTransaction.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
namespace HousingFinanceInterimApi.V1.Domain
{
public class BaseOperatingBalanceTransactionDomain
{
public string RentGroup { get; set; }
public int Year { get; set; }
public decimal TotalCharged { get; set; }
public decimal TotalPaid { get; set; }
public decimal TotalHBPaid { get; set; }
public decimal Section20Rebate { get; set; }
public decimal Section125Rebate { get; set; }
public decimal AssignmentSCTrans { get; set; }
public decimal BasicRentNoVAT { get; set; }
public decimal MWBalanceTransfer { get; set; }
public decimal CPreliminaries { get; set; }
public decimal CProvisionalSums { get; set; }
public decimal CContingencySums { get; set; }
public decimal CProfessionalFees { get; set; }
public decimal CAdministration { get; set; }
public decimal CleaningBlock { get; set; }
public decimal CourtCosts { get; set; }
public decimal CleaningEstate { get; set; }
public decimal ContentsInsurance { get; set; }
public decimal Concierge { get; set; }
public decimal CarPort { get; set; }
public decimal CommunalDigitalTV { get; set; }
public decimal GarageAttached { get; set; }
public decimal GroundsMaintenance { get; set; }
public decimal GroundRent { get; set; }
public decimal HostAmenity { get; set; }
public decimal Heating { get; set; }
public decimal HeatingMaintenance { get; set; }
public decimal HotWater { get; set; }
public decimal Interest { get; set; }
public decimal ArrangementInterest { get; set; }
public decimal LostKeyFobs { get; set; }
public decimal LegacyDebit { get; set; }
public decimal LostKeyCharge { get; set; }
public decimal LandlordLighting { get; set; }
public decimal LatePaymentCharge { get; set; }
public decimal MajorWorksCapital { get; set; }
public decimal TAManagementFee { get; set; }
public decimal MWJudgementTrans { get; set; }
public decimal MajorWorksLoan { get; set; }
public decimal MajorWorksRevenue { get; set; }
public decimal ParkingPermits { get; set; }
public decimal ParkingAnnualChg { get; set; }
public decimal StaffCosts { get; set; }
public decimal CCTVMonitoring { get; set; }
public decimal RContingencySums { get; set; }
public decimal RProfessionalFees { get; set; }
public decimal RAdministrationFee { get; set; }
public decimal RechgRepairsnoVAT { get; set; }
public decimal RechargeableRepairs { get; set; }
public decimal SCAdjustment { get; set; }
public decimal SCBalancingCharge { get; set; }
public decimal ServiceCharges { get; set; }
public decimal SCJudgementDebit { get; set; }
public decimal SharedOwnersRent { get; set; }
public decimal ReserveFund { get; set; }
public decimal Storage { get; set; }
public decimal BasicRentTempAcc { get; set; }
public decimal TravellersCharge { get; set; }
public decimal TenantsLevy { get; set; }
public decimal TelevisionLicense { get; set; }
public decimal VATCharge { get; set; }
public decimal WaterRates { get; set; }
public decimal WaterStandingChrg { get; set; }
public decimal WatersureReduction { get; set; }
public decimal BailiffPayment { get; set; }
public decimal BankPayment { get; set; }
public decimal PayPointPostOfficeRBR { get; set; }
public decimal RepCashIncentive { get; set; }
public decimal CashOfficePayments { get; set; }
public decimal DebitCreditCard { get; set; }
public decimal MWCreditTransfer { get; set; }
public decimal DirectDebit { get; set; }
public decimal DirectDebitUnpaid { get; set; }
public decimal DeductionWorkP { get; set; }
public decimal BACSRefund { get; set; }
public decimal DeductionSalary { get; set; }
public decimal DSSTransfer { get; set; }
public decimal TenantRefund { get; set; }
public decimal InternalTransfer { get; set; }
public decimal MWLoanPayment { get; set; }
public decimal OpeningBalance { get; set; }
public decimal PromptPayDiscount { get; set; }
public decimal PostalOrder { get; set; }
public decimal PayPointPostOfficeRPY { get; set; }
public decimal ChequePayments { get; set; }
public decimal ReturnedCheque { get; set; }
public decimal RechargeRepCredit { get; set; }
public decimal SCJudgementTrans { get; set; }
public decimal StandingOrder { get; set; }
public decimal TMOReversal { get; set; }
public decimal UniversalCreditRec { get; set; }
public decimal Rentwaiver { get; set; }
public decimal WriteOff { get; set; }
public decimal WriteOn { get; set; }
public decimal HBAdjustment { get; set; }
public decimal HousingBenefit { get; set; }
}
}