9 lines
157 B
C#
Raw Permalink Normal View History

2024-06-22 21:11:56 +04:00
namespace SewingDressesContracts.DI
{
public interface IImplementationExtension
{
public int Priority { get; }
public void RegisterServices();
}
}