10 lines
176 B
C#
Raw Normal View History

namespace FlowerShopContracts.DI
{
public interface IImplementationExtension
{
public int Priority { get; }
public void RegisterServices();
}
}