Полный рефакторинг api. Вынесено отдельно api passport
This commit is contained in:
18
YandexMusic.API/Models/Passport/YSendPushResult.cs
Normal file
18
YandexMusic.API/Models/Passport/YSendPushResult.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
namespace YandexMusic.API.Models.Passport;
|
||||
|
||||
public class YSendPushResult
|
||||
{
|
||||
[JsonPropertyName("pushes_devices_list")]
|
||||
public List<object> PushesDevicesList { get; set; } = new();
|
||||
|
||||
[JsonPropertyName("deny_resend_until")]
|
||||
public int DenyResendUntil { get; set; }
|
||||
|
||||
[JsonPropertyName("is_push_silent")]
|
||||
public bool IsPushSilent { get; set; }
|
||||
|
||||
[JsonPropertyName("apps_for_bright_push")]
|
||||
public List<YPushApp> AppsForBrightPush { get; set; } = new();
|
||||
}
|
||||
Reference in New Issue
Block a user