3219718d27
Updated various doubles to be ints
15 lines
246 B
C#
15 lines
246 B
C#
using System.Text.Json.Serialization;
|
|
using Core.Models.Common;
|
|
|
|
namespace Core.Models.Eft.Ragfair;
|
|
|
|
public record GetItemPriceResult : MinMax<double>
|
|
{
|
|
[JsonPropertyName("avg")]
|
|
public double? Avg
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|