EnVisageOnline/Main-RMO/Source/IntegrationTests/Models/Company2View.cs

15 lines
390 B
C#

using System;
using System.Collections.Generic;
namespace IntegrationTests.Models
{
public partial class Company2View
{
public System.Guid Id { get; set; }
public System.Guid CompanyId { get; set; }
public Nullable<System.Guid> ViewId { get; set; }
public virtual Company Company { get; set; }
public virtual View View { get; set; }
}
}