2023-03-21 15:55:03 +05:00
|
|
|
|
using System.Collections.Generic;
|
2023-03-24 10:27:30 +05:00
|
|
|
|
using System.Linq;
|
2023-02-22 09:20:04 +05:00
|
|
|
|
|
2023-03-21 15:55:03 +05:00
|
|
|
|
namespace AsbCloudApp.Data.DailyReport
|
|
|
|
|
{
|
2023-02-22 09:20:04 +05:00
|
|
|
|
|
2023-03-21 15:55:03 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Блок баланса времени
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class TimeBalanceDto : ItemInfoDto
|
|
|
|
|
{
|
2023-02-22 09:20:04 +05:00
|
|
|
|
/// <summary>
|
2023-03-21 15:55:03 +05:00
|
|
|
|
/// Статистика по операциям
|
2023-02-22 09:20:04 +05:00
|
|
|
|
/// </summary>
|
2023-03-24 10:27:30 +05:00
|
|
|
|
public IEnumerable<OperationStatDto> OperationsStat { get; set; } = Enumerable.Empty<OperationStatDto>();
|
2023-02-22 09:20:04 +05:00
|
|
|
|
}
|
2022-06-23 16:42:20 +05:00
|
|
|
|
}
|
|
|
|
|
|