Ви не можете вибрати більше 25 тем
Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
|
- 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 = 11;
- public int NoodleLoc { get { return _noodleLoc; } set { _noodleLoc = value; OnPropertyChanged(); } }
- private int _noodleLoc=0;
- public int FrytimeMin { get { return _frytimeMin; } set { _frytimeMin = value; OnPropertyChanged(); } }
- private int _frytimeMin=2;
- public int FrytimeS { get { return _frytimeS; } set { _frytimeS = value; OnPropertyChanged(); } }
- private int _frytimeS=0;
- }
- }
|