Sport.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 Sport type as an enum
  22. /// </summary>
  23. public enum Sport : byte
  24. {
  25. Generic = 0,
  26. Running = 1,
  27. Cycling = 2,
  28. Transition = 3,
  29. FitnessEquipment = 4,
  30. Swimming = 5,
  31. Basketball = 6,
  32. Soccer = 7,
  33. Tennis = 8,
  34. AmericanFootball = 9,
  35. Training = 10,
  36. Walking = 11,
  37. CrossCountrySkiing = 12,
  38. AlpineSkiing = 13,
  39. Snowboarding = 14,
  40. Rowing = 15,
  41. Mountaineering = 16,
  42. Hiking = 17,
  43. Multisport = 18,
  44. Paddling = 19,
  45. Flying = 20,
  46. EBiking = 21,
  47. Motorcycling = 22,
  48. Boating = 23,
  49. Driving = 24,
  50. Golf = 25,
  51. HangGliding = 26,
  52. HorsebackRiding = 27,
  53. Hunting = 28,
  54. Fishing = 29,
  55. InlineSkating = 30,
  56. RockClimbing = 31,
  57. Sailing = 32,
  58. IceSkating = 33,
  59. SkyDiving = 34,
  60. Snowshoeing = 35,
  61. Snowmobiling = 36,
  62. StandUpPaddleboarding = 37,
  63. Surfing = 38,
  64. Wakeboarding = 39,
  65. WaterSkiing = 40,
  66. Kayaking = 41,
  67. Rafting = 42,
  68. Windsurfing = 43,
  69. Kitesurfing = 44,
  70. All = 254,
  71. Invalid = 0xFF
  72. }
  73. }