IJobControl.cs 205 B

1234567891011121314
  1. using System;
  2. using Comal.Classes;
  3. namespace PRSDesktop
  4. {
  5. public interface IJobControl
  6. {
  7. Job Job { get; set; }
  8. JobPanelSettings Settings { get; set; }
  9. }
  10. }