//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace EnVisage { using System; using System.Collections.Generic; public partial class StrategicGoal { public StrategicGoal() { this.StrategicGoal2Company = new HashSet(); this.StrategicGoal2Project = new HashSet(); } public System.Guid Id { get; set; } public string Name { get; set; } public string Description { get; set; } public Nullable StartDate { get; set; } public Nullable EndDate { get; set; } public string Color { get; set; } public virtual ICollection StrategicGoal2Company { get; set; } public virtual ICollection StrategicGoal2Project { get; set; } } }