Теперь все данные nullable
This commit is contained in:
@@ -6,31 +6,31 @@ using MessagePack;
|
||||
public class MessagePackData
|
||||
{
|
||||
[Key("concentrationIndex")]
|
||||
public double ConcentrationIndex { get; set; }
|
||||
public double? ConcentrationIndex { get; set; }
|
||||
[Key("relaxationIndex")]
|
||||
public double RelaxationIndex { get; set; }
|
||||
public double? RelaxationIndex { get; set; }
|
||||
[Key("cognitiveControl")]
|
||||
public double CognitiveControl { get; set; }
|
||||
public double? CognitiveControl { get; set; }
|
||||
[Key("cognitiveLoad")]
|
||||
public double CognitiveLoad { get; set; }
|
||||
public double? CognitiveLoad { get; set; }
|
||||
[Key("alpha")]
|
||||
public double Alpha { get; set; }
|
||||
public double? Alpha { get; set; }
|
||||
[Key("beta")]
|
||||
public double Beta { get; set; }
|
||||
public double? Beta { get; set; }
|
||||
[Key("theta")]
|
||||
public double Theta { get; set; }
|
||||
public double? Theta { get; set; }
|
||||
[Key("smr")]
|
||||
public double Smr { get; set; }
|
||||
public double? Smr { get; set; }
|
||||
[Key("muWave")]
|
||||
public double MuWave { get; set; }
|
||||
public double? MuWave { get; set; }
|
||||
[Key("artifact")]
|
||||
public bool Artifact { get; set; }
|
||||
public bool? Artifact { get; set; }
|
||||
[Key("signalQuality")]
|
||||
public double SignalQuality { get; set; }
|
||||
public double? SignalQuality { get; set; }
|
||||
[Key("packageIndex")]
|
||||
public long PackageIndex { get; set; }
|
||||
[Key("timeOfDataGenerate")]
|
||||
public DateTime TimeOfDataGenerate { get; set; }
|
||||
public DateTime? TimeOfDataGenerate { get; set; }
|
||||
|
||||
public MessagePackData() { }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user