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; } } }