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.
 
 

17 regels
388 B

  1. using Microsoft.Extensions.Options;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace JT809.PubSub.Abstractions
  6. {
  7. public class JT809PartitionOptions:IOptions<JT809PartitionOptions>
  8. {
  9. public int Partition { get; set; } = 1;
  10. public JT809PartitionOptions Value => this;
  11. public List<int> AssignPartitions { get; set; }
  12. }
  13. }