Files
YandexMusic/YandexMusic.API/Models/Common/YInvocationInfo.cs
2026-04-10 12:12:33 +03:00

13 lines
386 B
C#

namespace YandexMusic.API.Models.Common
{
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; }
}
}