Files
rudder-csharp-sdk/Stores/ListStoresResponse.cs
T

16 lines
317 B
C#
Raw Normal View History

2026-08-12 14:04:55 +03:00
// Code generated by apigen. DO NOT EDIT.
using Newtonsoft.Json;
using System.Collections.Generic;
namespace RudderSdk.Core.Models.Stores;
public class ListStoresResponse
{
[JsonProperty("stores")]
2026-08-29 11:33:01 +03:00
public List<Store>? Stores { get; set; }
2026-08-12 14:04:55 +03:00
[JsonProperty("total")]
2026-08-29 11:33:01 +03:00
public int? Total { get; set; }
2026-08-12 14:04:55 +03:00
}