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.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Model
- {
- public class FoodMenuModel:NotifyBase
- {
-
-
- public string GoodName { get { return _goodName; } set { _goodName = value; OnPropertyChanged(); } }
- private string _goodName;
-
- public string GoodKey { get { return _goodKey; } set { _goodKey = value; OnPropertyChanged(); } }
- private string _goodKey;
-
- public int BowLoc { get { return _bowLoc; } set { _bowLoc = value; OnPropertyChanged(); } }
- private int _bowLoc;
- public int NoodleLoc { get { return _noodleLoc; } set { _noodleLoc = value; OnPropertyChanged(); } }
- private int _noodleLoc;
- public int FrytimeMin { get { return _frytimeMin; } set { _frytimeMin = value; OnPropertyChanged(); } }
- private int _frytimeMin;
- public int FrytimeS { get { return _frytimeS; } set { _frytimeS = value; OnPropertyChanged(); } }
- private int _frytimeS;
- }
- }
|