SubSport.cs 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #region Copyright
  2. ////////////////////////////////////////////////////////////////////////////////
  3. // The following FIT Protocol software provided may be used with FIT protocol
  4. // devices only and remains the copyrighted property of Dynastream Innovations Inc.
  5. // The software is being provided on an "as-is" basis and as an accommodation,
  6. // and therefore all warranties, representations, or guarantees of any kind
  7. // (whether express, implied or statutory) including, without limitation,
  8. // warranties of merchantability, non-infringement, or fitness for a particular
  9. // purpose, are specifically disclaimed.
  10. //
  11. // Copyright 2016 Dynastream Innovations Inc.
  12. ////////////////////////////////////////////////////////////////////////////////
  13. // ****WARNING**** This file is auto-generated! Do NOT edit this file.
  14. // Profile Version = 16.60Release
  15. // Tag = production-akw-16.60.00-0-g5d3d436
  16. ////////////////////////////////////////////////////////////////////////////////
  17. #endregion
  18. namespace Dynastream.Fit
  19. {
  20. /// <summary>
  21. /// Implements the profile SubSport type as an enum
  22. /// </summary>
  23. public enum SubSport : byte
  24. {
  25. Generic = 0,
  26. Treadmill = 1,
  27. Street = 2,
  28. Trail = 3,
  29. Track = 4,
  30. Spin = 5,
  31. IndoorCycling = 6,
  32. Road = 7,
  33. Mountain = 8,
  34. Downhill = 9,
  35. Recumbent = 10,
  36. Cyclocross = 11,
  37. HandCycling = 12,
  38. TrackCycling = 13,
  39. IndoorRowing = 14,
  40. Elliptical = 15,
  41. StairClimbing = 16,
  42. LapSwimming = 17,
  43. OpenWater = 18,
  44. FlexibilityTraining = 19,
  45. StrengthTraining = 20,
  46. WarmUp = 21,
  47. Match = 22,
  48. Exercise = 23,
  49. Challenge = 24,
  50. IndoorSkiing = 25,
  51. CardioTraining = 26,
  52. IndoorWalking = 27,
  53. EBikeFitness = 28,
  54. Bmx = 29,
  55. CasualWalking = 30,
  56. SpeedWalking = 31,
  57. BikeToRunTransition = 32,
  58. RunToBikeTransition = 33,
  59. SwimToBikeTransition = 34,
  60. Atv = 35,
  61. Motocross = 36,
  62. Backcountry = 37,
  63. Resort = 38,
  64. RcDrone = 39,
  65. Wingsuit = 40,
  66. Whitewater = 41,
  67. SkateSkiing = 42,
  68. Yoga = 43,
  69. Pilates = 44,
  70. IndoorRunning = 45,
  71. All = 254,
  72. Invalid = 0xFF
  73. }
  74. }