2024-02-14 02:07:22 +01:00
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using VDownload.Models;
|
|
|
|
|
|
using VDownload.Services.Data.Settings.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Services.Data.Settings
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CommonSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
[JsonProperty("max_number_of_videos_to_get_from_playlist")]
|
|
|
|
|
|
public int MaxNumberOfVideosToGetFromPlaylist { get; set; } = 0;
|
|
|
|
|
|
|
2024-02-28 01:22:13 +01:00
|
|
|
|
[JsonProperty("temp")]
|
|
|
|
|
|
public Temp Temp { get; set; } = new Temp();
|
2024-02-14 02:07:22 +01:00
|
|
|
|
|
2024-02-28 01:22:13 +01:00
|
|
|
|
[JsonProperty("tasks")]
|
|
|
|
|
|
public Tasks Tasks { get; set; } = new Tasks();
|
2024-02-14 02:07:22 +01:00
|
|
|
|
|
|
|
|
|
|
[JsonProperty("notifications")]
|
|
|
|
|
|
public Notifications Notifications { get; set; } = new Notifications();
|
|
|
|
|
|
|
|
|
|
|
|
[JsonProperty("processing")]
|
|
|
|
|
|
public Processing Processing { get; set; } = new Processing();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|