11 lines
264 B
C#
11 lines
264 B
C#
namespace IM_API.Configs.Options
|
|
{
|
|
public class RabbitMQOptions
|
|
{
|
|
public string Host { get; set; }
|
|
public int Port { get; set; }
|
|
public string Username { get; set; }
|
|
public string Password { get; set; }
|
|
}
|
|
}
|