Files

26 lines
886 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.RollCallService;
public class CreateRollCallService
{
public string ServiceType { get; set; }
public string StartServiceStr { get; set; }
public string EndServiceStr { get; set; }
public DateTime StartService { get; set; }
public DateTime EndService { get; set; }
public long WorkshopId { get; set; }
public long AccountId { get; set; }
public string IsActiveString { get; set; }
public int MaxPersonValid { get; set; }
public double Amount { get; set; }
public string AmountFa { get; set; }
public string Duration { get; set; }
public string FullName { get; set; }
public int AddPersonValid { get; set; }
public string HasCustomizeCheckoutService { get; set; }
}