using JetBrains.Annotations;
namespace AmagnoVirtualPrinter.Agent.Core.Interfaces
{
public interface IUserConfig
{
///
/// The printer stored in the registry.
///
[CanBeNull]
string RedirectPrinter { get; }
///
/// The DPI value stored in the registry.
///
/// Initial value is null.
double? UserRenderDpi { get; }
///
/// The format that you choose on your client side stored in the registry.
///
/// Intital value is PDF
[NotNull]
string Format { get; }
///
/// The full path of the output directory.
///
[NotNull]
string ResolvedOutputDirectory { get; }
}
}