pschelpdesk/PrintshopCreator/PrintshopCreator.cs
2024-11-14 21:51:24 +01:00

21 lines
314 B
C#

using PSCHelpdesk.Shared.Plugin;
namespace PrintshopCreator;
public class PrintshopCreator: Contract
{
public string GetName()
{
return "PrintshopCreator";
}
public void Configure()
{
}
public List<Type> LoadViews()
{
return new List<Type>();
}
}