Files
VDownload/VDownload.Services/VDownload.Services.Data/VDownload.Services.Data.Application/CommonApplicationData.cs
2024-03-07 20:46:30 +01:00

16 lines
357 B
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace VDownload.Services.Data.Application
{
public class CommonApplicationData
{
[JsonProperty("last_output_directory")]
public string? LastOutputDirectory { get; set; } = null;
}
}