AzureServiceBusFactoryOptions.cs 271 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace TEAMModelOS.SDK.DI
  5. {
  6. public class AzureServiceBusFactoryOptions
  7. {
  8. public string Name { get; set; }
  9. public string ServiceBusConnectionString { get; set; }
  10. }
  11. }