Files

10 lines
311 B
C#
Raw Normal View History

2024-10-27 22:09:46 +01:00
namespace WatchIt.Website.Services.Configuration.Model;
2024-07-03 22:18:32 +02:00
public class ConfigurationData
{
public Logging Logging { get; set; }
public string AllowedHosts { get; set; }
public StorageKeys StorageKeys { get; set; }
public Style Style { get; set; }
2024-07-03 22:18:32 +02:00
public Endpoints Endpoints { get; set; }
}