crm.core/code/Crm.Core.External.Domain/Config/Consumer.cs

18 lines
336 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.External.Domain.Config
{
public class Consumer
{
public string? Host { get; set; }
public string? GroupId { get; set; }
public string? Topic { get; set; }
}
}