2023-10-31 11:47:27 -04:00

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