25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

ICapOptionsExtension.cs 189 B

7 yıl önce
123456789
  1. using Microsoft.Extensions.DependencyInjection;
  2. namespace DotNetCore.CAP
  3. {
  4. public interface ICapOptionsExtension
  5. {
  6. void AddServices(IServiceCollection services);
  7. }
  8. }