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