Add comment for usage change of DeviceProperties

This commit is contained in:
Xiangzhi Sheng 2017-03-03 10:43:15 +08:00
Родитель 4f5432464b
Коммит 5032539025
1 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -17,7 +17,12 @@ namespace Microsoft.Azure.Devices.Applications.RemoteMonitoring.Common.Models
Telemetry = new List<Telemetry>();
}
/// <summary>
/// Start from version 1.6, device properties in this class will be ignored.
/// Please use 'reported properties' of twin to report properties
/// </summary>
public DeviceProperties DeviceProperties { get; set; }
public SystemProperties SystemProperties { get; set; }
public List<Command> Commands { get; set; }
public List<CommandHistory> CommandHistory { get; set; }