mirror of
https://bitbucket.org/cjdskunkworks/lynxastrodewcontroller.git
synced 2026-05-04 01:38:52 +00:00
12 lines
341 B
C#
12 lines
341 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ASCOM.LynxAstro.DewController
|
|
{
|
|
public class ProfileProperties
|
|
{
|
|
// properies that are part of the profile
|
|
public string ComPort { get; set; }
|
|
public bool TraceLogger { get; set; }
|
|
public List<string> SwitchNames { get; set; } = new List<string>();
|
|
}
|
|
} |