ln.templates/ln.templates/script/IScriptContext.cs

21 lines
558 B
C#

// /**
// * File: IScriptContext.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
using System.Collections.Generic;
namespace ln.templates.script
{
public interface IScriptContext
{
IEnumerable<string> ScriptObjectNames { get; }
object GetScriptObject(string itemName);
void SetScriptObject(string itemName, object value);
}
}