IJobControl.cs 234 B

12345678910111213
  1. using System;
  2. namespace PRSDesktop
  3. {
  4. public interface IJobControl
  5. {
  6. Guid ParentID { get; set; }
  7. JobPanelSettings Settings { get; set; }
  8. // DataModel DataModel(Selection selection);
  9. }
  10. }