allow null row update values

This commit is contained in:
2023-10-05 15:25:41 +02:00
parent 0bd526d30a
commit 32c94d62a4
2 changed files with 2 additions and 2 deletions

View File

@@ -10,6 +10,6 @@ namespace Pilz.Networking.CloudProviders.Nextcloud.Client.Apps.Tables.Model
public class RowUpdate
{
[JsonProperty("data")]
public Dictionary<long, object> Data { get; set; } = new();
public Dictionary<long, object?> Data { get; set; } = new();
}
}