namespace TelpoKafkaConsole.WebApi.Model.Request { public class ScramAclsConsumerReq { public string Name { get; set; } = default!; public string Password { get; set; } = default!; public string Topic { get; set; } = default!; public int NumPartitions { get; set; } = 1; public string Group { get; set; } = default!; } }