This commit is contained in:
the
2023-04-07 17:53:57 +04:00
parent aef57c1f55
commit 9f9aa560c3
21 changed files with 460 additions and 6 deletions

View File

@@ -0,0 +1,16 @@
using ComputerShopContracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ComputerShopBusinessLogic.OfficePackage.HelperModels
{
public class WordInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public List<EquipmentReceivingViewModel> EquipmentReceivings { get; set; } = new();
}
}