16 lines
579 B
C#
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; }
|
|||
|
}
|
|||
|
}
|