IQuotePage.cs 122 B

123456789
  1. using System;
  2. namespace PRSDesktop
  3. {
  4. public interface IQuotePage
  5. {
  6. Guid ParentID { get; set; }
  7. }
  8. }