|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class Security
|
|
{
|
|
public System.Guid PrincipalId { get; set; }
|
|
public int Read { get; set; }
|
|
public int Write { get; set; }
|
|
public string SecurityObject { get; set; }
|
|
}
|
|
}
|