18 lines
488 B
C#
18 lines
488 B
C#
using _0_Framework.Domain.CustomizeCheckoutShared.Enums;
|
|
|
|
namespace CompanyManagment.App.Contracts.CustomizeWorkshopSettings.ValueObjectsViewModel;
|
|
|
|
public class LeavePayViewModel
|
|
{
|
|
/// <summary>
|
|
/// نوع مرخصی
|
|
/// </summary>
|
|
public LeavePayType LeavePayType { get; set; }
|
|
|
|
///// <summary>
|
|
///// تعداد روز های مجاز مرخصی
|
|
///// </summary>
|
|
//public string DayCountAllowable { get; set; }
|
|
|
|
public double Value { get; set; }
|
|
} |