11 lines
150 B
C#
11 lines
150 B
C#
namespace PSCHelpdesk.Shared.Plugin;
|
|
|
|
public interface Contract
|
|
{
|
|
string GetName();
|
|
|
|
void Configure();
|
|
|
|
List<Type> LoadViews();
|
|
|
|
} |