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.

11 lines
347 B

1 year ago
  1. namespace Common.Model.Inbound
  2. {
  3. public class InboundBanks
  4. {
  5. public string Id { get; set; }
  6. public string BankCode { get; set; }
  7. public bool IsPennyTestSuccess { get; set; }
  8. public bool IsPrimary { get; set; }
  9. public string Bank { get; set; }
  10. public string AccountNo { get; set; }
  11. }
  12. }