ContactTypeEnum.cs 192 B

12345678910
  1. namespace Quadarax.Application.QLiberace.Customer.Enums
  2. {
  3. public enum ContactTypeEnum
  4. {
  5. Email = 0,
  6. Address = 1,
  7. Phone = 2,
  8. Sms = 3
  9. }
  10. }