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