14 lines
331 B
C#
14 lines
331 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class User2View
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public System.Guid UserId { get; set; }
|
|
public Nullable<System.Guid> ViewId { get; set; }
|
|
public virtual View View { get; set; }
|
|
}
|
|
}
|