Files
Backend-Api/CompanyManagment.App.Contracts/Workshop/CheckoutStatusDivide.cs
2024-07-05 21:36:15 +03:30

17 lines
461 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CompanyManagment.App.Contracts.Workshop;
public class CheckoutStatusDivide
{
public string CheckoutStart { get; set; }
public string CheckoutEnd { get; set; }
public int MonthStart { get; set; }
public int MonthEnd { get; set; }
public string Year { get; set; }
public string SignaturStatus { get; set; }
}