2024-02-14 02:07:22 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Services.Data.Settings.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Notifications
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("on_successful")]
|
2024-03-03 03:14:07 +01:00
|
|
|
|
public bool OnSuccessful { get; set; } = false;
|
2024-02-14 02:07:22 +01:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("on_unsuccessful")]
|
2024-03-03 03:14:07 +01:00
|
|
|
|
public bool OnUnsuccessful { get; set; } = false;
|
2024-02-14 02:07:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|