17 lines
368 B
C#
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; }
|
|
}
|
|
} |