11 lines
285 B
C#
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; }
|
|
}
|
|
} |