using Biskilog_Accounting.Shared.POSModels; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Biskilog_Accounting.Shared.CustomModels { public class CustomerAccounts { public Tblcustomer Customer { get; set; } public decimal Debt { get; set; } = 0; } }