SubscribeAttribute.cs 463 B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Core.RabbitMQBus.Common
  5. {
  6. [AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)]
  7. public class SubscribeAttribute : Attribute
  8. {
  9. /// <summary>
  10. /// 队列名称
  11. /// </summary>
  12. public string QueueName { get; set; }
  13. public SubscribeAttribute(string queueName)
  14. {
  15. QueueName = queueName;
  16. }
  17. }
  18. }