pschelpdesk/Vendor/Prise/Activation/PluginService.cs
2024-11-04 20:45:34 +01:00

17 lines
368 B
C#

using System;
using Prise.Plugin;
namespace Prise.Activation
{
public class BootstrapperService
{
public string FieldName { get; set; }
public Type ServiceType { get; set; }
public Type ProxyType { get; set; }
}
public class PluginService : BootstrapperService
{
public ProvidedBy ProvidedBy { get; set; }
}
}