BankAccountBalance.cs 453 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Entities.Models
  4. {
  5. public partial class BankAccountBalance
  6. {
  7. public Guid Id { get; set; }
  8. public Guid? CollectionId { get; set; }
  9. public int Version { get; set; }
  10. public Guid? BankAccountId { get; set; }
  11. public decimal? Amount { get; set; }
  12. public Guid? BusinessId { get; set; }
  13. public string? BalanceType { get; set; }
  14. }
  15. }