13 lines
329 B
C#
13 lines
329 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.Contract;
|
|
|
|
public class ContractDividPrintViewModel
|
|
{
|
|
public List<GroupPrintViewModel> GroupPrintViewModel { get; set; }
|
|
public int ButtonConter { get; set; }
|
|
} |