From 9505128e6f4a043e589898bd9129a629afd5bddf Mon Sep 17 00:00:00 2001 From: Adam Frisby Date: Thu, 31 May 2007 10:47:38 +0000 Subject: The start of a beautiful thing! (eeek inventory!) --- .../OpenGrid.Framework.Data/InventoryData.cs | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs (limited to 'OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs') diff --git a/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs new file mode 100644 index 0000000..628868f --- /dev/null +++ b/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenGrid.Framework.Data +{ + public interface IInventoryData + { + /// + /// Initialises the interface + /// + void Initialise(); + + /// + /// Closes the interface + /// + void Close(); + + /// + /// The plugin being loaded + /// + /// A string containing the plugin name + string getName(); + + /// + /// The plugins version + /// + /// A string containing the plugin version + string getVersion(); + } +} -- cgit v1.1