using JetBrains.Annotations; namespace VirtualPrinter.Agent.Core { 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; } } }