選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
275B

  1. namespace TelpoKafkaConsole.WebApi.Model.Request
  2. {
  3. public class TopicReq
  4. {
  5. public string TopicName { get; set; } = default!;
  6. public int NumPartitions { get; set; } = 1;
  7. //public int RetentionTime { get; set; } = 1000 * 24 * 3600;
  8. }
  9. }