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
{
///
/// A form control is any object which can be inside a .
///
public class FormControl
{
///
/// All s have an , which the uses to put them into containers and layouts.
///
public Guid ID { get; set; } = Guid.NewGuid();
}
}