using JetBrains.Annotations;
namespace VirtualPrinter.Agent.Core
{
public interface IConfig
{
///
/// The mask for the filename.
///
/// The mask can be look like {yyyy}{MM}{DD}{hh}{mm}{ss}{job05}{page03}
[NotNull]
string FileNameMask { get; }
///
/// The port of the printer.
///
/// E.g. 9101
short PrinterPort { get; }
}
}