18 lines
281 B
C#
Executable File
18 lines
281 B
C#
Executable File
namespace dotless.Core.Plugins
|
|
{
|
|
using System;
|
|
|
|
public interface IPluginParameter
|
|
{
|
|
string Name { get; }
|
|
|
|
bool IsMandatory { get; }
|
|
|
|
object Value { get; }
|
|
|
|
string TypeDescription { get; }
|
|
|
|
void SetValue(string value);
|
|
}
|
|
}
|