Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- using Microsoft.Toolkit.Mvvm.ComponentModel;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.JXJFoodSmallStation.Model.Bom
- {
- public class BomMaterial:ObservableObject
- {
- public int Count { get { return _count; } set { _count = value; OnPropertyChanged(); } }
- public int _count { get; set; }
-
- public string MaterialCode { get { return _materialCode; }set { _materialCode = value;OnPropertyChanged(); } }
- private string _materialCode="";
-
- public string MaterialName { get { return _materialName; } set { _materialName = value; OnPropertyChanged(); } }
- private string _materialName="";
- }
- }
|