EnVisageOnline/Main-RMO/Source/EnVisage/StrategicGoal.cs

34 lines
1.2 KiB
C#

//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace EnVisage
{
using System;
using System.Collections.Generic;
public partial class StrategicGoal
{
public StrategicGoal()
{
this.StrategicGoal2Company = new HashSet<StrategicGoal2Company>();
this.StrategicGoal2Project = new HashSet<StrategicGoal2Project>();
}
public System.Guid Id { get; set; }
public string Name { get; set; }
public string Description { get; set; }
public Nullable<System.DateTime> StartDate { get; set; }
public Nullable<System.DateTime> EndDate { get; set; }
public string Color { get; set; }
public virtual ICollection<StrategicGoal2Company> StrategicGoal2Company { get; set; }
public virtual ICollection<StrategicGoal2Project> StrategicGoal2Project { get; set; }
}
}