31 lines
804 B
C#
31 lines
804 B
C#
///////////////////////////////////////////////////////////
|
|
// LatitudeHemisphere.cs
|
|
// Implementation of Class LatitudeHemisphere
|
|
//
|
|
// Created on: 24-Nov-2005
|
|
// Object design: John
|
|
// Coded: 24-Nov-2005
|
|
///////////////////////////////////////////////////////////
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
namespace GZTW.AyaNova.BLL
|
|
{
|
|
/// <summary>
|
|
/// Hemisphere for setting defaults in UI for co-ordinate inference
|
|
/// </summary>
|
|
[TypeConverter(typeof(EnumDescConverter))]
|
|
public enum LatitudeHemisphere : int
|
|
{
|
|
/// <summary>
|
|
/// North of the equator
|
|
/// </summary>
|
|
[Description("LT:UI.Label.North")] North = 0,
|
|
/// <summary>
|
|
/// South of the equator
|
|
/// </summary>
|
|
[Description("LT:UI.Label.South")] South = 1
|
|
}//end LatHemisphere
|
|
}
|