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

32 lines
1.0 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 View
{
public View()
{
this.Company2View = new HashSet<Company2View>();
this.Team2View = new HashSet<Team2View>();
this.User2View = new HashSet<User2View>();
}
public System.Guid Id { get; set; }
public string Name { get; set; }
public virtual ICollection<Company2View> Company2View { get; set; }
public virtual ICollection<Team2View> Team2View { get; set; }
public virtual ICollection<User2View> User2View { get; set; }
}
}