15 lines
389 B
C#
15 lines
389 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Contact2Project
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid ContactId { get; set; }
|
|
public System.Guid ShowId { get; set; }
|
|
public virtual Contact Contact { get; set; }
|
|
public virtual Project Project { get; set; }
|
|
}
|
|
}
|