aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--OpenGridServices/OpenGrid.Framework.Data/InventoryData.cs31
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 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace 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}