Clean code, remove warning for future and spot

This commit is contained in:
2025-12-11 14:36:35 +07:00
parent df8c199cce
commit 1426f0b560
17 changed files with 314 additions and 388 deletions

View File

@@ -1,12 +1,10 @@
using System.Text.Json.Serialization;
using Managing.Domain.Trades;
using Newtonsoft.Json;
namespace Managing.Infrastructure.Evm.Models.Proxy;
public class GetGmxTradesResponse : Web3ProxyBaseResponse
{
[JsonProperty("trades")]
[JsonPropertyName("trades")]
public List<GmxTrade> Trades { get; set; }
@@ -53,4 +51,4 @@ public class GmxTrade
[JsonProperty("exchangeOrderId")]
[JsonPropertyName("exchangeOrderId")]
public string ExchangeOrderId { get; set; }
}
}