24 lines
781 B
C#
24 lines
781 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class View
|
|
{
|
|
public View()
|
|
{
|
|
this.Company2View = new List<Company2View>();
|
|
this.Team2View = new List<Team2View>();
|
|
this.User2View = new List<User2View>();
|
|
this.View2CostCenter = new List<View2CostCenter>();
|
|
}
|
|
|
|
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; }
|
|
public virtual ICollection<View2CostCenter> View2CostCenter { get; set; }
|
|
}
|
|
}
|