Coursach/Course/BusinessLogic/OfficePackage/HelperModels/PdfInfoGuarantor.cs

19 lines
498 B
C#
Raw Normal View History

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 PdfInfoGuarantor
{
public MemoryStream FileName { get; set; } = new();
public string Title { get; set; } = string.Empty;
public DateTime DateFrom { get; set; }
public DateTime DateTo { get; set; }
public List<MachineWorkshopTimeReport> Reports { get; set; } = new();
}
}