This commit is contained in:
2020-01-21 00:47:26 +00:00
parent efa2acc930
commit 426f0c9c9c
3 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System.Collections.Generic;
using AyaNova.Biz;
namespace AyaNova.DataList
{
internal interface IAyaDataList
{
//Unique key to identify this list
string ListKey { get; }
//sql query from fragment with table joins et
string SQLFrom { get; }
//List of fields for this object
List<AyaDataListFieldDefinition> FieldDefinitions { get; }
//allowed roles to access this list
public AuthorizationRoles AllowedRoles { get; }
}
}