forked from ddrilling/AsbCloudServer
Olga Nemt
b7ce104e4e
- Добавлен новый extension метод AssemblyExtensions.GetTemplateCopyStreamAsync - IAutoGeneratedDailyReportMakerService переименован в IReportMakerService и стал более универсальным
14 lines
372 B
C#
14 lines
372 B
C#
using System;
|
||
|
||
namespace AsbCloudApp.Data.AutogeneratedDailyReport;
|
||
|
||
/// <summary>
|
||
/// Базовая информация о суточном отчёте
|
||
/// </summary>
|
||
public class AutoGeneratedDailyReportInfoDto : ReportInfoDto
|
||
{
|
||
/// <summary>
|
||
/// Дата формирования отчёта
|
||
/// </summary>
|
||
public DateOnly ReportDate { get; set; }
|
||
} |