using System;
using System.Collections.Generic;
using System.Text;
namespace InABox.Core
{
///
/// Used to specify that the field is for digital forms
///
public interface IDFLayoutFormField
{
}
///
/// Used to prevent a field being able to be added to a form.
///
public interface IDFLayoutObsoleteField
{
}
///
/// Used to specify that the data for this field should be stored in .
///
public interface IDFBlobField { }
}