AyCode.Core/AyCode.Interfaces/ServiceProviders/IAcServiceProviderRelation.cs

6 lines
231 B
C#

namespace AyCode.Interfaces.ServiceProviders;
public interface IAcServiceProviderRelation<TServiceProvider> where TServiceProvider : class, IAcServiceProvider
{
public List<TServiceProvider> ServiceProviders { get; set; }
}