2024-08-19 17:49:44 +04:00

16 lines
580 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationBusinessLogic.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; }
}
}