1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 14:10:45 +00:00
msfs-popout-panel-manager/SimconnectAgent/SimConnectDataDefinition.cs
2023-07-12 18:47:24 -04:00

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
}
}