Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 

17 righe
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. }