Files
2024-08-16 06:59:39 +02:00

13 lines
261 B
C#

using Newtonsoft.Json;
namespace Pilz.Net.CloudProviders.Nextcloud.Client.Apps.Tables.Model;
public class RowData
{
[JsonProperty("columnId")]
public long ColumnId { get; set; }
[JsonProperty("value")]
public object? Value { get; set; }
}