终端一体化运控平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

17 lignes
416 B

  1. using BPASmartClient.Model;
  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. using Microsoft.Toolkit.Mvvm.ComponentModel;
  9. namespace BPASmartClient.MorkM.Model
  10. {
  11. internal class MorksPar
  12. {
  13. public ObservableCollection<ParSet> parSets { get; set; } = new ObservableCollection<ParSet>();
  14. }
  15. }