#3417 also send id of parameter with api response

This commit is contained in:
Dave Woestenborghs
2019-01-18 12:37:04 +01:00
parent a83ac4a24d
commit 7fd7d7a582
2 changed files with 8 additions and 1 deletions

View File

@@ -100,7 +100,8 @@
{
Editor = param.EditorAlias,
Key = param.Alias,
Label = param.Name
Label = param.Name,
Id = param.Id
});
}

View File

@@ -25,5 +25,11 @@
/// </summary>
[DataMember(Name = "editor")]
public string Editor { get; set; }
/// <summary>
/// Gets or sets the id.
/// </summary>
[DataMember(Name = "id")]
public int Id { get; set; }
}
}