Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

23 lignes
571B

  1. using Confluent.Kafka.Admin;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace TelpoKafkaConsole.Model
  8. {
  9. public class UserAcls
  10. {
  11. public string UserName { get; set; } = default!;
  12. public string Topic { get; set; } = default!;
  13. //public string Group { get; set; } = default!;
  14. public virtual AclOperation Operation { get; set; } = AclOperation.Any;
  15. public virtual AclPermissionType Permission { get; set; } = AclPermissionType.Unknown;
  16. }
  17. }