Implemented GetAllStaticPrices
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
using System.Text.Json.Serialization;
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace Core.Models.Spt.Ragfair;
|
||||
|
||||
public record RagfairServerPrices
|
||||
{
|
||||
[JsonPropertyName("static")]
|
||||
public Dictionary<string, int>? Static { get; set; }
|
||||
[JsonPropertyName("staticPrices")]
|
||||
public Dictionary<string, double>? StaticPrices { get; set; }
|
||||
|
||||
[JsonPropertyName("dynamic")]
|
||||
public Dictionary<string, int>? Dynamic { get; set; }
|
||||
[JsonPropertyName("dynamicPrices")]
|
||||
public Dictionary<string, double>? DynamicPrices { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user