DigitalFormGroup.cs 239 B

123456789
  1. namespace InABox.Core
  2. {
  3. public class DigitalFormGroup : Entity, IRemotable, IPersistent, ILicense<DigitalFormsLicense>
  4. {
  5. [EditorSequence(1)]
  6. [TextBoxEditor]
  7. public string Description { get; set; }
  8. }
  9. }