You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
565 B
25 lines
565 B
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!;
|
|
}
|
|
|