12 lines
339 B
C#
12 lines
339 B
C#
namespace YandexMusic.API.Models.Ugc
|
|
{
|
|
public class YUgcUpload
|
|
{
|
|
[JsonProperty("poll-result")]
|
|
public string PollResult { get; set; }
|
|
[JsonProperty("post-target")]
|
|
public string PostTarget { get; set; }
|
|
[JsonProperty("ugc-track-id")]
|
|
public string UgcTrackId { get; set; }
|
|
}
|
|
} |