EnVisageOnline/Beta/Source/IntegrationTests/Models/Company2Client.cs

15 lines
388 B
C#

using System;
using System.Collections.Generic;
namespace IntegrationTests.Models
{
public partial class Company2Client
{
public System.Guid Id { get; set; }
public System.Guid CompanyId { get; set; }
public System.Guid ClientId { get; set; }
public virtual Client Client { get; set; }
public virtual Company Company { get; set; }
}
}