Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

15 строки
348 B

  1. using System;
  2. using System.Collections.Concurrent;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace HBLConsole.Model
  8. {
  9. public class AlarmHzParameter
  10. {
  11. public ConcurrentDictionary<string, int> AlarmHz { get; set; } = new ConcurrentDictionary<string, int>();
  12. }
  13. }