using System; using System.Collections.Generic; namespace EnVisage.Models { public class MixProjectModel : MixProjectModelBase { public string Name { get; set; } public string Color { get; set; } public string ColorRGB { get; set; } public long? Deadline { get; set; } public bool Pinned { get; set; } public Dictionary InactiveScenarios { get; set; } public List AllLinksAndDependencies { get; set; } public bool HasDependency { get; set; } public bool HasLink { get; set; } public bool DependencyPinned { get; set; } public string DependencyToolTip { get; set; } } }