24 lines
342 B
C#
24 lines
342 B
C#
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
|