您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }