You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 satır
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. }