mirror of
https://github.com/hawkeye-stan/msfs-popout-panel-manager.git
synced 2024-11-22 13:50:14 +00:00
36 lines
728 B
C#
36 lines
728 B
C#
namespace MSFSPopoutPanelManager.SimConnectAgent
|
|
{
|
|
public class SimConnectDataDefinition
|
|
{
|
|
public DATA_DEFINITION DefinitionId { get; set; }
|
|
|
|
public DATA_REQUEST RequestId { get; set; }
|
|
|
|
public string PropName { get; set; }
|
|
|
|
public string VariableName { get; set; }
|
|
|
|
public string SimConnectUnit { get; set; }
|
|
|
|
public DataType DataType { get; set; }
|
|
|
|
public DataDefinitionType DataDefinitionType { get; set; }
|
|
|
|
public object Value { get; set; }
|
|
}
|
|
|
|
public enum DataDefinitionType
|
|
{
|
|
AVar,
|
|
LVar,
|
|
SimConnect,
|
|
SimEvent
|
|
}
|
|
|
|
public enum DataType
|
|
{
|
|
String,
|
|
Float64,
|
|
Default
|
|
}
|
|
}
|