using EnVisage.Code.DAL.Mongo; using System; using System.Collections.Generic; using System.Web.Mvc; namespace EnVisage.Models { public class MixTeamModel { public string Id { get; set; } public string Name { get; set; } public Guid? CompanyId { get; set; } public Guid? CostCenterId { get; set; } public Guid[] UserId { get; set; } public bool IsNew { get; set; } public SelectListGroup Group { get; set; } public Dictionary ExpCategories { get; set; } /// /// Gets or sets a planned capacity of the team. /// /// SA. May be unused public List PlannedCapacity { get; set; } public MixTeamModel() { ExpCategories = new Dictionary(); PlannedCapacity = new List(); } } }