IDigitalFormControl.cs 219 B

123456789101112
  1. using InABox.Core;
  2. using Xamarin.Forms;
  3. namespace PRS.Mobile
  4. {
  5. public interface IDigitalFormControl<TDefinition> where TDefinition : DFLayoutControl
  6. {
  7. TDefinition? Definition { get; set; }
  8. }
  9. }