13 lines
386 B
C#
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; }
|
|
}
|
|
} |