17 lines
671 B
C#
17 lines
671 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; }
|
|
// TODO: we should to add permissions information here. Structure should be as following:
|
|
// {Read = 1, Write = 0} and on the client side decide which project does not visible or which project user can not edit
|
|
}
|
|
} |