15 lines
372 B
C#
15 lines
372 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class ProjectAccess
|
|
{
|
|
public System.Guid PrincipalId { get; set; }
|
|
public System.Guid ProjectId { get; set; }
|
|
public int Read { get; set; }
|
|
public int Write { get; set; }
|
|
public virtual Project Project { get; set; }
|
|
}
|
|
}
|