using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace framework_library { public class enums { /// /// Interaction Type for Data interactions /// public enum InteractionType { Insert = 0, Update = 1, Select = 2, Delete = 3, Verify = 4, SelectDistinct = 5 } public enum CommunicationType { SMS = 1, Email = 2 } public enum CommunicationStatus { NotSent = 0, Success = 1, Failed = 2 } } }