RabbitOptionsEntity.cs 369 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Threading.Tasks;
  5. namespace Host.Entity
  6. {
  7. public class RabbitOptionsEntity
  8. {
  9. public string RabbitHost { get; set; }
  10. public int RabbitPort { get; set; }
  11. public string RabbitUserName { get; set; }
  12. public string RabbitPassword { get; set; }
  13. }
  14. }