终端一体化运控平台
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

LocalRecipes.cs 341 B

2 년 전
2 년 전
2 년 전
2 년 전
2 년 전
2 년 전
2 년 전
2 년 전
2 년 전
12345678910111213141516
  1. 
  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 BPASmart.Model
  9. {
  10. public class LocalRecipes
  11. {
  12. public ObservableCollection<Recipes> locaRecipes { get; set; } = new ObservableCollection<Recipes>();
  13. }
  14. }