IDigitalForm.cs 291 B

12345678910111213141516
  1. using System;
  2. namespace InABox.Core
  3. {
  4. public interface IDigitalForm
  5. {
  6. }
  7. public interface IDigitalForm<T> : IDigitalForm
  8. {
  9. [Obsolete("Being Replaced with Form", true)]
  10. QAFormLink QAForm { get; set; }
  11. DigitalFormLink Form { get; set; }
  12. }
  13. }