Files
YandexMusic/YandexMusic.API/Models/Common/YOwner.cs
2026-04-10 15:05:32 +03:00

10 lines
251 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; }
}