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();
}
}