1
0
Fork 0
mirror of https://github.com/hawkeye-stan/msfs-popout-panel-manager.git synced 2024-10-16 06:00:45 +00:00
msfs-popout-panel-manager/SimconnectAgent/SimConnectDataDefinition.cs

37 lines
726 B
C#
Raw Permalink Normal View History

2022-07-23 19:23:32 +00:00
namespace MSFSPopoutPanelManager.SimConnectAgent
{
public class SimConnectDataDefinition
{
2024-02-28 02:44:21 +00:00
public DataDefinition DefinitionId { get; set; }
2022-07-23 19:23:32 +00:00
2024-02-28 02:44:21 +00:00
public DataRequest RequestId { get; set; }
2022-07-23 19:23:32 +00:00
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,
2022-08-01 23:21:42 +00:00
SimConnect,
SimEvent
2022-07-23 19:23:32 +00:00
}
public enum DataType
{
String,
Float64,
Default
}
}