16 lines
368 B
C#
16 lines
368 B
C#
namespace CocktailWeb
|
|
{
|
|
public class GeneralSettings
|
|
{
|
|
public int MaxAllowedUploadSizeInMB { get; set; } = 10;
|
|
|
|
public string ImageUploadDir { get; set; } = "images";
|
|
|
|
public string SerialPort { get; set; } = "COM5";
|
|
|
|
public int Baudrate { get; set; } = 115200;
|
|
|
|
public string? SettingsPassword { get; set; }
|
|
}
|
|
}
|