EnVisageOnline/Main-RMO/Source/EnVisage/Models/MixModels/MixTeamModel.cs

31 lines
949 B
C#

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<string, ActivityExpCategoryFooterModel> ExpCategories { get; set; }
/// <summary>
/// Gets or sets a planned capacity of the team.
/// </summary>
/// <remarks>SA. May be unused</remarks>
public List<MixTeamCapacity> PlannedCapacity { get; set; }
public MixTeamModel()
{
ExpCategories = new Dictionary<string, ActivityExpCategoryFooterModel>();
PlannedCapacity = new List<MixTeamCapacity>();
}
}
}