using System;
using System.Collections.Generic;
namespace EnVisage.Models
{
public class ActivityResourceFooterModel
{
public Guid Id { get; set; }
public string Name { get; set; }
/// Contains total allocated resource capacity between active scenarios for certain week ending (key in milliseconds).
public Dictionary AllocatedCapacity { get; set; }
/// Contains total available resource capacity for certain week ending (key in milliseconds). Takes from EC UoM value.
public Dictionary TotalCapacity { get; set; }
public ActivityResourceFooterModel()
{
AllocatedCapacity = new Dictionary();
TotalCapacity = new Dictionary();
}
}
}