12 lines
360 B
C#
12 lines
360 B
C#
namespace ASCOM.Meade.net
|
|
{
|
|
public class ParkedPosition
|
|
{
|
|
public double Altitude { get; set; }
|
|
public double Azimuth { get; set; }
|
|
public double RightAscension { get; set; }
|
|
public double Declination { get; set; }
|
|
public double SiteLongitude { get; set; }
|
|
public double SiteLatitude { get; set; }
|
|
}
|
|
} |