IDFLayoutFormField.cs 406 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace InABox.Core
  5. {
  6. /// <summary>
  7. /// Used to specify that the field is for digital forms
  8. /// </summary>
  9. public interface IDFLayoutFormField
  10. {
  11. }
  12. /// <summary>
  13. /// Used to prevent a field being able to be added to a form.
  14. /// </summary>
  15. public interface IDFLayoutObsoleteField
  16. {
  17. }
  18. }