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