using System; using System.Collections.Generic; namespace Biskilog_Accounting.Shared.POSModels; public partial class Customeraccount { public string CustomerId { get; set; } = null!; public string TransactionId { get; set; } = null!; public DateTime Date { get; set; } public decimal Debit { get; set; } public decimal Credit { get; set; } public decimal Balance { get; set; } public string Comments { get; set; } = null!; public string BranchId { get; set; } = null!; public string CountId { get; set; } = null!; }