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.

33 lines
812 B

  1. using BPA.Helper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace BPA.Model
  8. {
  9. public class RecipeModel : NotifyBase
  10. {
  11. /// <summary>
  12. /// 配方名称
  13. /// </summary>
  14. public string Name { get { return _mName; } set { _mName = value; OnPropertyChanged(); } }
  15. private string _mName;
  16. /// <summary>
  17. /// 配方ID
  18. /// </summary>
  19. public string Id { get { return _mId; } set { _mId = value; OnPropertyChanged(); } }
  20. private string _mId;
  21. /// <summary>
  22. /// 商品数量
  23. /// </summary>
  24. public ushort Count { get { return _mCount; } set { _mCount = value; OnPropertyChanged(); } }
  25. private ushort _mCount;
  26. }
  27. }