Files
Backend-Api/CompanyManagment.App.Contracts/CustomizeCheckout/EligibleEmployeesForCustomizeCheckoutViewModel.cs
2025-01-04 21:45:20 +03:30

14 lines
401 B
C#

namespace CompanyManagment.App.Contracts.CustomizeCheckout
{
public class EligibleEmployeesForCustomizeCheckoutViewModel
{
public long Id { get; set; }
public string Name { get; set; }
public bool IsEligible { get; set; }
public string Reason { get; set; }
public string Color { get; set; }
public string PersonnelCode { get; set; }
}
}