This commit is contained in:
2024-02-28 01:22:13 +01:00
Unverified
parent e3ec5c3a48
commit 74eb899e31
51 changed files with 562 additions and 608 deletions

View File

@@ -0,0 +1,18 @@
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 Temp
{
[JsonProperty("directory")]
public string Directory { get; set; } = $"{Path.GetTempPath()}\\VDownload";
[JsonProperty("delete_on_error")]
public bool DeleteOnError { get; set; } = true;
}
}