终端一体化运控平台
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

MorksPar.cs 506 B

1 yıl önce
1 yıl önce
1 yıl önce
1 yıl önce
1 yıl önce
1234567891011121314151617
  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 BPA.Helper;
  9. namespace BPASmartClient.MorkMV1.Model
  10. {
  11. internal class MorksPar
  12. {
  13. public ObservableCollection<ParSet> parSets { get; set; } = new ObservableCollection<ParSet>();
  14. public ObservableCollection<ParSet> DishLibraryParSets { get; set; } = new ObservableCollection<ParSet>();
  15. }
  16. }