1234567891011121314151617181920 |
- using Newtonsoft.Json.Linq;
- using System;
- using System.Collections.Generic;
- using System.Diagnostics.CodeAnalysis;
- using System.Text;
- using System.Xml.Linq;
- namespace InABox.Core.DigitalForms.NewLayout
- {
- /// <summary>
- /// A form control is <i>any</i> object which can be inside a <see cref="FormLayout"/>.
- /// </summary>
- public class FormControl
- {
- /// <summary>
- /// All <see cref="FormControl"/>s have an <see cref="ID"/>, which the <see cref="FormLayout"/> uses to put them into containers and layouts.
- /// </summary>
- public Guid ID { get; set; } = Guid.NewGuid();
- }
- }
|