10 lines
214 B
C#
10 lines
214 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Pilz.Net.CloudProviders.Nextcloud.Client.Apps.Tables.Model;
|
|
|
|
public class RowUpdate
|
|
{
|
|
[JsonProperty("data")]
|
|
public Dictionary<long, object?> Data { get; set; } = [];
|
|
}
|