You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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;
- }
- }
|