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

13 lines
407 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.CustomizeCheckout
{
public class CustomizeCheckoutBatchPrintViewModel
{
public List<CustomizeCheckoutViewModel> CustomizeCheckoutViewModels { get; set; }
public List<long> CustomizeCheckoutIdList { get; set; }
public int StartPrint { get; set; }
public int EndPrint { get; set; }
}
}