Files
rudder-csharp-sdk/Storage/StorageItem.cs
T

18 lines
331 B
C#
Raw Normal View History

2026-08-12 14:04:55 +03:00
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
namespace RudderSdk.Core.Models.Storage;
public class StorageItem
{
[JsonProperty("data")]
2026-08-29 11:33:01 +03:00
public string? Data { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("id")]
2026-08-29 11:33:01 +03:00
public string? Id { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("type")]
2026-08-29 11:33:01 +03:00
public string? Type { get; set; }
2026-08-12 14:04:55 +03:00
}