using System; using System.Collections.Generic; namespace Entities.Models { public partial class BankAccountBalance { public Guid Id { get; set; } public Guid? CollectionId { get; set; } public int Version { get; set; } public Guid? BankAccountId { get; set; } public decimal? Amount { get; set; } public Guid? BusinessId { get; set; } public string? BalanceType { get; set; } } }