12 lines
301 B
C#
12 lines
301 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace YandexMusic.API.Models.Passport;
|
|
|
|
public class YMasterInfo
|
|
{
|
|
[JsonPropertyName("firstname")]
|
|
public string FirstName { get; set; } = string.Empty;
|
|
|
|
[JsonPropertyName("lastname")]
|
|
public string LastName { get; set; } = string.Empty;
|
|
} |