This commit is contained in:
20
server/AyaNova/DataList/IAyaDataList.cs
Normal file
20
server/AyaNova/DataList/IAyaDataList.cs
Normal 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; }
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user