Files
Pilz/Pilz.Net.CloudProviders.Nextcloud/Client/Apps/Tables/Model/ColumnSelectionOption.cs
2024-08-16 06:59:39 +02:00

13 lines
263 B
C#

using Newtonsoft.Json;
namespace Pilz.Net.CloudProviders.Nextcloud.Client.Apps.Tables.Model;
public class ColumnSelectionOption
{
[JsonProperty("id")]
public long Id { get; set; }
[JsonProperty("label")]
public string? Label { get; set; }
}