Files

19 lines
448 B
C#
Raw Normal View History

2024-02-28 01:22:13 +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 Temp
{
[JsonProperty("directory")]
2024-03-03 03:14:07 +01:00
public string Directory { get; set; } = $"{Path.GetTempPath()}VDownload";
2024-02-28 01:22:13 +01:00
[JsonProperty("delete_on_error")]
public bool DeleteOnError { get; set; } = true;
}
}