- namespace BankOperationsUpdate.WorkerService.Data.Models;
- public class BankAccountBalanceDTO
- {
- public Guid Id { get; set; }
- public int Version { get; set; }
- public bool IsNew => Id == Guid.Empty;
- public Guid? BankAccountId { get; set; }
- public decimal? Amount { get; set; }
- public Guid? BusinessId { get; set; }
- public string BalanceType { get; set; }
- }
|