BodyLocation.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 BodyLocation type as an enum
  22. /// </summary>
  23. public enum BodyLocation : byte
  24. {
  25. LeftLeg = 0,
  26. LeftCalf = 1,
  27. LeftShin = 2,
  28. LeftHamstring = 3,
  29. LeftQuad = 4,
  30. LeftGlute = 5,
  31. RightLeg = 6,
  32. RightCalf = 7,
  33. RightShin = 8,
  34. RightHamstring = 9,
  35. RightQuad = 10,
  36. RightGlute = 11,
  37. TorsoBack = 12,
  38. LeftLowerBack = 13,
  39. LeftUpperBack = 14,
  40. RightLowerBack = 15,
  41. RightUpperBack = 16,
  42. TorsoFront = 17,
  43. LeftAbdomen = 18,
  44. LeftChest = 19,
  45. RightAbdomen = 20,
  46. RightChest = 21,
  47. LeftArm = 22,
  48. LeftShoulder = 23,
  49. LeftBicep = 24,
  50. LeftTricep = 25,
  51. LeftBrachioradialis = 26,
  52. LeftForearmExtensors = 27,
  53. RightArm = 28,
  54. RightShoulder = 29,
  55. RightBicep = 30,
  56. RightTricep = 31,
  57. RightBrachioradialis = 32,
  58. RightForearmExtensors = 33,
  59. Neck = 34,
  60. Throat = 35,
  61. Invalid = 0xFF
  62. }
  63. }