2024-07-03 22:18:32 +02:00
|
|
|
|
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|
|
|
|
|
|
|
|
|
|
|
public class ConfigurationData
|
|
|
|
|
|
{
|
|
|
|
|
|
public Logging Logging { get; set; }
|
|
|
|
|
|
public string AllowedHosts { get; set; }
|
2024-07-30 16:19:51 +02:00
|
|
|
|
public StorageKeys StorageKeys { get; set; }
|
2024-10-12 01:51:39 +02:00
|
|
|
|
public Style Style { get; set; }
|
2024-07-03 22:18:32 +02:00
|
|
|
|
public Endpoints Endpoints { get; set; }
|
|
|
|
|
|
}
|