IDFLayoutFormField.cs 604 B

12345678910111213141516171819202122232425
  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. /// <summary>
  19. /// Used to specify that the data for this field should be stored in <see cref="IBaseDigitalFormInstance.BlobData"/>.
  20. /// </summary>
  21. public interface IDFBlobField { }
  22. }