You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
499 B

2 years ago
  1. 
  2. using System.Collections.Generic;
  3. namespace EasyBL
  4. {
  5. public class FeeItem
  6. {
  7. public string FinancialCode { set; get; }
  8. public decimal OriginalCurrencyAmount { set; get; }
  9. public decimal TWAmount { set; get; }
  10. public List<string> AllocatedToBillNOs { get; set; }
  11. public FeeItem()
  12. {
  13. AllocatedToBillNOs = new List<string>();
  14. OriginalCurrencyAmount = decimal.Zero;
  15. TWAmount = decimal.Zero;
  16. }
  17. }
  18. }