26 lines
No EOL
569 B
C#
26 lines
No EOL
569 B
C#
namespace RdtClient.Data.Models.Internal;
|
|
|
|
public class AppSettings
|
|
{
|
|
public AppSettingsLogging Logging { get; set; }
|
|
public AppSettingsDatabase Database { get; set; }
|
|
|
|
public Int32 Port { get; set; }
|
|
}
|
|
|
|
public class AppSettingsLogging
|
|
{
|
|
public AppSettingsLoggingFile File { get; set; }
|
|
}
|
|
|
|
public class AppSettingsLoggingFile
|
|
{
|
|
public String Path { get; set; }
|
|
public Int64 FileSizeLimitBytes { get; set; }
|
|
public Int32 MaxRollingFiles { get; set; }
|
|
}
|
|
|
|
public class AppSettingsDatabase
|
|
{
|
|
public String Path { get; set; }
|
|
} |