using System; using System.Collections.Generic; namespace Cloud_Manager.Models.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!; }