diff --git a/ObservatoryFramework/PluginUI.cs b/ObservatoryFramework/PluginUI.cs
index 97e3c5d..e924fb7 100644
--- a/ObservatoryFramework/PluginUI.cs
+++ b/ObservatoryFramework/PluginUI.cs
@@ -6,29 +6,74 @@ using System.Threading.Tasks;
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.Avalonia.
+ /// (Untested/not implemented)
+ ///
public object UI;
+
+ ///
+ /// Collection bound to DataGrid used byu 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