twitch settings added, settings images dictionary added
This commit is contained in:
@@ -12,8 +12,8 @@ namespace VDownload.Services.Data.Settings
|
||||
{
|
||||
public class CommonSettings
|
||||
{
|
||||
[JsonProperty("max_number_of_videos_to_get_from_playlist")]
|
||||
public int MaxNumberOfVideosToGetFromPlaylist { get; set; } = 0;
|
||||
[JsonProperty("searching")]
|
||||
public Searching Searching { get; set; } = new Searching();
|
||||
|
||||
[JsonProperty("temp")]
|
||||
public Temp Temp { get; set; } = new Temp();
|
||||
|
||||
@@ -0,0 +1,15 @@
|
||||
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 Searching
|
||||
{
|
||||
[JsonProperty("max_number_of_videos_to_get_from_playlist")]
|
||||
public int MaxNumberOfVideosToGetFromPlaylist { get; set; } = 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user