This commit is contained in:
2018-08-23 19:07:43 +00:00
parent eeb0b1496c
commit 8c37148121
2 changed files with 35 additions and 2 deletions

View File

@@ -0,0 +1,23 @@
namespace AyaNova.Biz
{
/// <summary>
/// All AyaNova event types
/// Used for central biz logging and notification
/// </summary>
public enum AyaEvent : int
{
//common events
Deleted = 0,
Created = 1,
Retrieved = 2,
Modified = 3
//specific events
}
}//eons