using System; using System.Collections.Generic; namespace Biskilog_Accounting.Shared.POSModels; public partial class Tblcancelledtransaction { public string? Transno { get; set; } public DateTime? DateCancelled { get; set; } public string? CancelledBy { get; set; } public string BranchId { get; set; } = null!; public string CountId { get; set; } = null!; }