namespace Sockeye.Biz { /// /// All Sockeye notification delivery methods /// /// 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