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

11 lines
317 B
C#

using System.Collections.Generic;
namespace CompanyManagment.App.Contracts.Contract;
public class GroupPrintViewModel
{
public List<ContractViweModel> ContractList { get; set; }
public List<long> CantractIdList { get; set; }
public int StartPrint { get; set; }
public int EndPrint { get; set; }
}