Files
VDownload/VDownload.Services/VDownload.Services.Data/VDownload.Services.Data.Configuration/CommonConfiguration.cs
2024-03-06 01:26:43 +01:00

25 lines
753 B
C#

using Microsoft.Extensions.Configuration;
using System.Text.Json.Serialization;
using VDownload.Services.Data.Configuration.Models;
namespace VDownload.Services.Data.Configuration
{
public class CommonConfiguration
{
[ConfigurationKeyName("about")]
public About About { get; set; }
[ConfigurationKeyName("filename_templates")]
public IEnumerable<FilenameTemplate> FilenameTemplates { get; set; }
[ConfigurationKeyName("path")]
public Models.Path Path { get; set; }
[ConfigurationKeyName("processing")]
public Processing Processing { get; set; }
[ConfigurationKeyName("string_resources_assembly")]
public string StringResourcesAssembly { get; set; }
}
}