终端一体化运控平台
Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

20 linhas
721 B

  1. using Microsoft.Toolkit.Mvvm.ComponentModel;
  2. using System;
  3. using System.Collections.Concurrent;
  4. using System.Collections.Generic;
  5. using System.Collections.ObjectModel;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace FryPot_DosingSystem.Model
  10. {
  11. internal class FlowProcessNames : ObservableObject
  12. {
  13. private static FlowProcessNames _instance;
  14. public static FlowProcessNames GetInstance => _instance ?? (_instance = new FlowProcessNames());
  15. // public ObservableCollection<string> Names { get; set; } = new ObservableCollection<string>();
  16. public ConcurrentDictionary<string, int> NameId { get; set; } = new ConcurrentDictionary<string, int>();
  17. }
  18. }