终端一体化运控平台
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.
 
 
 

18 lines
552 B

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