Gismatullin.ISEbd-21.STO.Co.../ServiceStation/ServiceSourceBusinessLogic/OfficePackage/HelperModels/PdfInfo.cs
2024-08-15 15:59:47 +04:00

16 lines
579 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceSourceBusinessLogic.OfficePackage.HelperModels {
public class PdfInfo {
public string Title { get; set; } = string.Empty;
public string Date_From { get; set; } = string.Empty;
public string Date_To { get; set;} = string.Empty;
public List<(int work_id, string work_date, double work_price, int task_id, string task_name)> WorkTask { get; set; } = new();
public int TotalCount { get; set; }
}
}