18 lines
452 B
C#
18 lines
452 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Core.Models.Eft.Ragfair;
|
|
|
|
public class GetOffersResult
|
|
{
|
|
[JsonPropertyName("categories")]
|
|
public Dictionary<string, int>? Categories { get; set; }
|
|
|
|
[JsonPropertyName("offers")]
|
|
public List<RagfairOffer> Offers { get; set; }
|
|
|
|
[JsonPropertyName("offersCount")]
|
|
public int OffersCount { get; set; }
|
|
|
|
[JsonPropertyName("selectedCategory")]
|
|
public string SelectedCategory { get; set; }
|
|
} |