14 lines
401 B
C#
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; }
|
|
}
|
|
}
|