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