Полный рефакторинг api. Вынесено отдельно api passport
This commit is contained in:
11
YandexMusic.API/Models/Passport/YPassportPerson.cs
Normal file
11
YandexMusic.API/Models/Passport/YPassportPerson.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user