Обнновлено до .net10
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
namespace YandexMusic.API.Models.Common
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace YandexMusic.API.Models.Common;
|
||||
|
||||
public class YInvocationInfo
|
||||
{
|
||||
public class YInvocationInfo
|
||||
{
|
||||
[JsonProperty("app-name")]
|
||||
public string AppName { get; set; }
|
||||
[JsonProperty("exec-duration-millis")]
|
||||
public int ExecDurationMillis { get; set; }
|
||||
public string HostName { get; set; }
|
||||
[JsonProperty("req-id")]
|
||||
public string ReqId { get; set; }
|
||||
}
|
||||
[JsonPropertyName("app-name")]
|
||||
public string AppName { get; set; }
|
||||
[JsonPropertyName("exec-duration-millis")]
|
||||
public int ExecDurationMillis { get; set; }
|
||||
public string HostName { get; set; }
|
||||
[JsonPropertyName("req-id")]
|
||||
public string ReqId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user