Files

10 lines
346 B
C#
Raw Normal View History

2024-04-27 22:36:16 +02:00
namespace WatchIt.WebAPI.Services.Utility.Configuration.Model;
public class ConfigurationData
{
public Logging Logging { get; set; }
public string AllowedHosts { get; set; }
public ConnectionStrings ConnectionStrings { get; set; }
public RootUser RootUser { get; set; }
public Authentication Authentication { get; set; }
}