git-svn-id: http://libopenmetaverse.googlecode.com/svn/trunk@60 52acb1d6-8a22-11de-b505-999d5b087335
13 lines
229 B
C#
13 lines
229 B
C#
using System;
|
|
|
|
namespace SecondSuite.Plugins
|
|
{
|
|
/// <summary>
|
|
/// A public interface used to pass context to plugins
|
|
/// </summary>
|
|
public interface SSPluginContext
|
|
{
|
|
//string CurrentDocumentText{get;set;}
|
|
}
|
|
}
|