14 lines
353 B
C#
14 lines
353 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class GLAccountAccess
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public Nullable<System.Guid> ParentId { get; set; }
|
|
public string GLDepartmentArray { get; set; }
|
|
public string GLDepartmentAccess { get; set; }
|
|
}
|
|
}
|