using JetBrains.Annotations; namespace VirtualPrinter.Agent.Core { /// /// The information of the job. /// public interface IJob { /// /// The path to the file containing the data. /// [NotNull] string RawDataPath { get; } /// /// The path to the ini file. /// [NotNull] string IniDataPath { get; } /// /// Several job infos. /// [NotNull] IJobInfo JobInfo { get; } /// /// Information about the session. /// [NotNull] ISessionInfo SessionInfo { get; } } }