using System.Collections.ObjectModel;
namespace Observatory.Framework;
///
/// Class permitting plugins to provide their UI, if any, to Observatory Core.
///
public class PluginUI
{
///
/// Type of UI used by plugin.
///
public readonly UIType PluginUIType;
///
/// UI object used by plugins with UIType.Panel.
///
public object UI;
///
/// Collection bound to DataGrid used by plugins with UIType.Basic.
/// Objects in collection should be of a class defined within the plugin consisting of string properties. Each object is a single row, and the property names are used as column headers.
///
public ObservableCollection