8 lines
233 B
C#
8 lines
233 B
C#
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
|
|
|
public class ConfigurationData
|
|
{
|
|
public Logging Logging { get; set; }
|
|
public string AllowedHosts { get; set; }
|
|
public Endpoints Endpoints { get; set; }
|
|
} |