123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace InABox.Core
- {
- /// <summary>
- /// Used to specify that the field is for digital forms
- /// </summary>
- public interface IDFLayoutFormField
- {
- }
- /// <summary>
- /// Used to specify that the data for this field should be stored in <see cref="IBaseDigitalFormInstance.BlobData"/>.
- /// </summary>
- public interface IDFBlobField { }
- }
|