This commit is contained in:
2020-07-09 21:42:15 +00:00
parent 217cc57a0a
commit dc5945d308
4 changed files with 44 additions and 25 deletions

View File

@@ -0,0 +1,20 @@
namespace AyaNova.Biz
{
/// <summary>
/// All AyaNova notification delivery methods
///
/// </summary>
public enum NotifyDeliveryMethod : int
{
App = 1,//deliver in app via notification system
SMTP = 2//deliver to an email address or other entity reachable via smtp such as sms from email etc
//NEW ITEMS REQUIRE translation KEYS
}
}//eons