Files
2024-07-05 21:36:15 +03:30

14 lines
423 B
C#

namespace CompanyManagment.App.Contracts.Bill;
public class BillViewModel
{
public long Id { get; set; }
public string SubjectBill { get; set; }
public string Description { get; set; }
public string Appointed { get; set; }
public string Contact { get; set; }
public string ProcessingStage { get; set; }
public string IsActiveString { get; set; }
public long Appointed_Id { get; set; }
}