PageRenderTime 47ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

/Main/src/DynamicDataDisplay.Maps/CoordinateType.cs

#
C# | 13 lines | 12 code | 1 blank | 0 comment | 0 complexity | 082874dc09a574fa889d689ee8d4f335 MD5 | raw file
Possible License(s): CC-BY-SA-3.0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Microsoft.Research.DynamicDataDisplay.Charts.Maps
  6. {
  7. public enum CoordinateType
  8. {
  9. Latitude = 0,
  10. Longitude
  11. }
  12. }