15 lines
368 B
C#
15 lines
368 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Team2View
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid TeamId { get; set; }
|
|
public System.Guid ViewId { get; set; }
|
|
public virtual Team Team { get; set; }
|
|
public virtual View View { get; set; }
|
|
}
|
|
}
|