diff options
Diffstat (limited to 'OpenGridServices/OpenGrid.Framework.Data')
-rw-r--r-- | OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs | 31 |
1 files changed, 31 insertions, 0 deletions
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 @@ | |||
1 | using System; | ||
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | |||
5 | namespace OpenGrid.Framework.Data | ||
6 | { | ||
7 | public interface IInventoryData | ||
8 | { | ||
9 | /// <summary> | ||
10 | /// Initialises the interface | ||
11 | /// </summary> | ||
12 | void Initialise(); | ||
13 | |||
14 | /// <summary> | ||
15 | /// Closes the interface | ||
16 | /// </summary> | ||
17 | void Close(); | ||
18 | |||
19 | /// <summary> | ||
20 | /// The plugin being loaded | ||
21 | /// </summary> | ||
22 | /// <returns>A string containing the plugin name</returns> | ||
23 | string getName(); | ||
24 | |||
25 | /// <summary> | ||
26 | /// The plugins version | ||
27 | /// </summary> | ||
28 | /// <returns>A string containing the plugin version</returns> | ||
29 | string getVersion(); | ||
30 | } | ||
31 | } | ||