14 lines
486 B
C#
14 lines
486 B
C#
namespace ASCOM.Meade.net
|
|
{
|
|
public class ProfileProperties
|
|
{
|
|
// properies that are part of the profile
|
|
public string ComPort { get; set; }
|
|
public bool TraceLogger { get; set; }
|
|
public double GuideRateArcSecondsPerSecond { get; set; }
|
|
public string Precision { get; set; }
|
|
public string GuidingStyle { get; set; }
|
|
public int BacklashCompensation { get; set; }
|
|
public bool ReverseFocusDirection { get; set; }
|
|
}
|
|
} |