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

11 lines
285 B
C#

namespace YandexMusic.API.Models.Common
{
public class YOwner
{
public string Login { get; set; }
public string Name { get; set; }
public string Sex { get; set; }
public string Uid { get; set; }
public bool Verified { get; set; }
}
}