15 lines
405 B
C#
15 lines
405 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class ScenarioAccess
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public Nullable<System.Guid> ParentId { get; set; }
|
|
public string ScenarioTypeArray { get; set; }
|
|
public string ScenarioStatusArray { get; set; }
|
|
public string ScenarioAccess1 { get; set; }
|
|
}
|
|
}
|