using System; using System.Collections.Generic; namespace EnVisage.Models { public class ActivityExpCategoryFooterModel { public Guid Id { get; set; } public string Name { get; set; } public decimal UomValue { get; set; } /// Key - week ending date in milliseconds, value - capacity public Dictionary PlannedCapacityValues { get; set; } /// Key - week ending date in milliseconds, value - capacity public Dictionary ActualCapacityValues { get; set; } /// Key - week ending date in milliseconds, value - capacity public Dictionary NeedCapacity { get; set; } /// Key - week ending date in milliseconds, value - capacity public Dictionary AllocatedCapacity { get; set; } /// Contains all resources related to current EC public Dictionary Resources { get; set; } public ActivityExpCategoryFooterModel() { PlannedCapacityValues = new Dictionary(); ActualCapacityValues = new Dictionary(); NeedCapacity = new Dictionary(); AllocatedCapacity = new Dictionary(); Resources = new Dictionary(); } } }