9 lines
297 B
C#
9 lines
297 B
C#
namespace Drab.Core.Configuration;
|
|
|
|
public class DrabSettings : IDrabSettings
|
|
{
|
|
public const string SectionName = "DrabSettings";
|
|
public int DbPollingFrequencyInSeconds { get; set; }
|
|
public int PrinterTimeoutSeconds { get; set; }
|
|
public string IgnoreOrdersBefore { get; set; }
|
|
} |