16 lines
400 B
C#
16 lines
400 B
C#
using System.Collections.Generic;
|
|
using zero.Core.Assemblies;
|
|
|
|
namespace zero.Core.Options
|
|
{
|
|
public class ZeroStartupOptions : IZeroStartupOptions
|
|
{
|
|
public IList<IAssemblyDiscoveryRule> AssemblyDiscoveryRules { get; private set; } = new List<IAssemblyDiscoveryRule>();
|
|
}
|
|
|
|
public interface IZeroStartupOptions
|
|
{
|
|
IList<IAssemblyDiscoveryRule> AssemblyDiscoveryRules { get; }
|
|
}
|
|
}
|