11 lines
317 B
C#
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; }
|
|
} |