Files
raven/server/AyaNova/DataList/IAyaDataList.cs
2020-01-21 16:47:26 +00:00

23 lines
649 B
C#

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
AuthorizationRoles AllowedRoles { get; }
//Default object type to open for rows of this list (use no object if no)
AyaType DefaultListObjectType { get; }
}
}