forked from ddrilling/AsbCloudServer
19 lines
460 B
C#
19 lines
460 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace AsbCloudApp.Data.DailyReport
|
|
{
|
|
|
|
/// <summary>
|
|
/// Блок баланса времени
|
|
/// </summary>
|
|
public class TimeBalanceDto : ItemInfoDto
|
|
{
|
|
/// <summary>
|
|
/// Статистика по операциям
|
|
/// </summary>
|
|
public IEnumerable<OperationStatDto> OperationsStat { get; set; } = Enumerable.Empty<OperationStatDto>();
|
|
}
|
|
}
|
|
|