Files
Pilz/Pilz.Networking.CloudProviders.Nextcloud/Client/Apps/Tables/Model/RowData.cs
2024-06-05 19:15:32 +02:00

13 lines
268 B
C#

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