23 lines
477 B
C#
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; }
|
|
|
|
}
|