This commit is contained in:
2020-02-27 00:27:06 +00:00
parent 9ea399e3f6
commit 060366e13d
5 changed files with 19 additions and 4 deletions

View File

@@ -9,14 +9,20 @@ namespace AyaNova.Biz
/// </summary>
public enum AyaType : int
{
//Attachable objects can have attachments,
//wikiable objects can have a wiki
//reviewable objects can have a review which is basically the same as a Reminder but with an object attached (was follow up schedmarker in v7)
//Pretty much everything that represents some kind of real world object is wikiable or attachable as long as it has an ID and a type
//exceptions would be utility type objects like datalistview, formcustom etc that are not
NoType = 0,
Global = 1,
[Attachable]
Widget = 2,
Widget = 2,//attachable, wikiable, reviewable
[Attachable]
User = 3,
User = 3,//attachable, wikiable, reviewable
ServerState = 4,
License = 5,