11 lines
400 B
C#
11 lines
400 B
C#
namespace YandexMusic.API.Models.Passport;
|
|
|
|
public class YPassportPerson
|
|
{
|
|
public string Birthday { get; set; } = string.Empty;
|
|
public string Country { get; set; } = string.Empty;
|
|
public string FirstName { get; set; } = string.Empty;
|
|
public int Gender { get; set; }
|
|
public string Language { get; set; } = string.Empty;
|
|
public string LastName { get; set; } = string.Empty;
|
|
} |