14 lines
313 B
C#
14 lines
313 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;
|
|
}
|
|
}
|