13 lines
407 B
C#
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; }
|
|
}
|
|
}
|