2024-02-14 02:07:22 +01:00
|
|
|
|
using Microsoft.Extensions.Configuration;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
using VDownload.Services.Data.Configuration.Models;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VDownload.Services.Data.Configuration
|
|
|
|
|
|
{
|
|
|
|
|
|
public class CommonConfiguration
|
|
|
|
|
|
{
|
2024-03-03 23:05:32 +01:00
|
|
|
|
[ConfigurationKeyName("filename_templates")]
|
|
|
|
|
|
public IEnumerable<FilenameTemplate> FilenameTemplates { get; set; }
|
|
|
|
|
|
|
2024-02-14 02:07:22 +01:00
|
|
|
|
[ConfigurationKeyName("path")]
|
|
|
|
|
|
public Models.Path Path { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[ConfigurationKeyName("processing")]
|
|
|
|
|
|
public Processing Processing { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
[ConfigurationKeyName("string_resources_assembly")]
|
|
|
|
|
|
public string StringResourcesAssembly { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|