8 lines
205 B
C#
8 lines
205 B
C#
namespace Drab.Core.Configuration;
|
|
|
|
public interface IDrabSettings
|
|
{
|
|
int DbPollingFrequencyInSeconds { get; }
|
|
int PrinterTimeoutSeconds { get; }
|
|
public string IgnoreOrdersBefore { get; set; }
|
|
} |