Fix DeviceCommandController bug

This commit is contained in:
handeadiguzel 2016-08-10 13:12:08 -07:00
Родитель f2ec79c86c
Коммит f0afa360f8
2 изменённых файлов: 3 добавлений и 2 удалений

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

@ -5,11 +5,12 @@ namespace Microsoft.Azure.Devices.Applications.RemoteMonitoring.Common.Models.Co
{
public class Command
{
/// <summary>
/// Serialziation deserialziation constructor.
/// </summary>
[JsonConstructor]
internal Command()
public Command()
{
Parameters = new List<Parameter>();
}

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

@ -8,7 +8,7 @@ namespace Microsoft.Azure.Devices.Applications.RemoteMonitoring.Common.Models
/// Serialization deserialization constructor.
/// </summary>
[JsonConstructor]
internal Parameter()
public Parameter()
{
}