WorkingMode.cs 504 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace ShakerApp.Models
  8. {
  9. public enum WorkingMode
  10. {
  11. [Description("WorkingModeLocal")]
  12. Local,
  13. [Description("WorkingModeRemote")]
  14. Remote,
  15. }
  16. public enum RemoteControlModel
  17. {
  18. [Description("RemoteControlModelWan")]
  19. Wan,
  20. [Description("RemoteControlModelLan")]
  21. Lan,
  22. }
  23. }