终端一体化运控平台
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

FoodMenuModel.cs 1.0 KiB

2 lat temu
2 lat temu
7 miesięcy temu
2 lat temu
12345678910111213141516171819202122232425262728
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BPASmartClient.Model
  7. {
  8. public class FoodMenuModel:NotifyBase
  9. {
  10. public string GoodName { get { return _goodName; } set { _goodName = value; OnPropertyChanged(); } }
  11. private string _goodName;
  12. public string GoodKey { get { return _goodKey; } set { _goodKey = value; OnPropertyChanged(); } }
  13. private string _goodKey;
  14. public int BowLoc { get { return _bowLoc; } set { _bowLoc = value; OnPropertyChanged(); } }
  15. private int _bowLoc;
  16. public int NoodleLoc { get { return _noodleLoc; } set { _noodleLoc = value; OnPropertyChanged(); } }
  17. private int _noodleLoc;
  18. public int FrytimeMin { get { return _frytimeMin; } set { _frytimeMin = value; OnPropertyChanged(); } }
  19. private int _frytimeMin;
  20. public int FrytimeS { get { return _frytimeS; } set { _frytimeS = value; OnPropertyChanged(); } }
  21. private int _frytimeS;
  22. }
  23. }