22 lines
705 B
C#
22 lines
705 B
C#
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<String, ScenarioCalendarMixModel> InactiveScenarios { get; set; }
|
|
public List<Guid> AllLinksAndDependencies { get; set; }
|
|
public bool HasDependency { get; set; }
|
|
public bool HasLink { get; set; }
|
|
public bool DependencyPinned { get; set; }
|
|
public string DependencyToolTip { get; set; }
|
|
|
|
|
|
}
|
|
} |