Files
YandexMusic/YandexMusic.API/Models/Common/YStorageDownloadFile.cs
FrigaT 526353d679
All checks were successful
Release / pack-and-publish (release) Successful in 36s
Переделано воспроизведение аудио
2026-04-21 11:14:36 +03:00

16 lines
377 B
C#

using System.Xml.Serialization;
namespace YandexMusic.API.Models.Common;
[XmlRoot("download-info")]
public class YStorageDownloadFile
{
[XmlElement("host")]
public string Host { get; set; }
[XmlElement("path")]
public string Path { get; set; }
[XmlElement("s")]
public string S { get; set; }
[XmlElement("ts")]
public string Ts { get; set; }
}