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>();

    }
}