2024-02-14 02:07:22 +01:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Services.Data.Configuration.Models
|
|
|
|
|
|
{
|
|
|
|
|
|
public class Appdata
|
|
|
|
|
|
{
|
|
|
|
|
|
[ConfigurationKeyName("directory_name")]
|
|
|
|
|
|
public string DirectoryName { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[ConfigurationKeyName("authentication_file")]
|
|
|
|
|
|
public string AuthenticationFile { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[ConfigurationKeyName("settings_file")]
|
|
|
|
|
|
public string SettingsFile { get; set; }
|
2024-03-07 20:46:30 +01:00
|
|
|
|
|
|
|
|
|
|
[ConfigurationKeyName("data_file")]
|
|
|
|
|
|
public string DataFile { get; set; }
|
2024-03-08 00:59:34 +01:00
|
|
|
|
|
|
|
|
|
|
[ConfigurationKeyName("subscriptions_file")]
|
|
|
|
|
|
public string SubscriptionsFile { get; set; }
|
2024-02-14 02:07:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|