using Newtonsoft.Json; namespace Pilz.Net.CloudProviders.Nextcloud.Client.Apps.Tables.Model; public class Row { [JsonProperty("id")] public long RowId { get; set; } = -1; [JsonProperty("tableId")] public long TableId { get; set; } = -1; [JsonProperty("createdBy")] public string? CreatedBy { get; set; } [JsonProperty("createdAt")] public DateTime CreatedAt { get; set; } [JsonProperty("lastEditBy")] public string? LastEditBy { get; set; } [JsonProperty("lastEditAt")] public DateTime LastEditAt { get; set; } [JsonProperty("data")] public List Data { get; set; } = []; }