using System.Text.Json.Serialization; using Prospect.Server.Api.Models.Client.Data; namespace Prospect.Server.Api.Models.Client; public class FGetStoreItemsResult { /// /// [optional] The base catalog that this store is a part of. /// [JsonPropertyName("CatalogVersion")] public string? CatalogVersion { get; set; } /// /// [optional] Array of items which can be purchased from this store. /// [JsonPropertyName("Store")] public List Store { get; set; } = new(); /// /// [optional] The ID of this store. /// [JsonPropertyName("StoreId")] public string? StoreId { get; set; } }