You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Enums.cs 391B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace ProRestaurant.Classes
  6. {
  7. public enum SystemRole
  8. {
  9. SuperAdmin,
  10. RestaurantAdmin,
  11. RestaurantUser,
  12. Customer
  13. }
  14. public enum OptionType
  15. {
  16. Single,
  17. SingleRequired,
  18. Multiple,
  19. MultipleLimit
  20. }
  21. }