11 lines
273 B
C#
11 lines
273 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Passport;
|
|
|
|
public class YPassportName
|
|
{
|
|
[JsonPropertyName("default_avatar")]
|
|
public string DefaultAvatar { get; set; } = string.Empty;
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
} |