PIAPS_CW/BusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
2024-06-24 18:53:31 +04:00

18 lines
463 B
C#

using Contracts.ViewModels;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BusinessLogic.OfficePackage.HelperModels
{
public class PdfInfo
{
public string FileName { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public DateTime Date { get; set; }
public SupplyViewModel Supply { get; set; } = new();
}
}