Files
rudder-csharp-sdk/Catalog/CatalogItem.cs
T
2026-08-12 14:04:55 +03:00

23 lines
477 B
C#

// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.Catalog;
public class CatalogItem
{
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("properties")]
public JToken Properties { get; set; }
[JsonProperty("slug")]
public string Slug { get; set; }
[JsonProperty("tags")]
public List<string> Tags { get; set; }
}