using CommunityToolkit.Mvvm.ComponentModel; using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common.Models { [Serializable] public class SourceLiquidBottleBoxModel : BaseBottleBox { //private bool havebox = false; ///// ///// 是否有原液瓶工装 ///// //public bool HaveBox //{ // get { return havebox; } // set { SetProperty(ref havebox, value); } //} private ObservableCollection sourceliquidbottlecollection; /// /// 一个原液瓶工装中的原液瓶集合(8个原液瓶) /// public ObservableCollection SourceLiquidBottleCollection { get { return sourceliquidbottlecollection; } set { SetProperty(ref sourceliquidbottlecollection, value); } } public SourceLiquidBottleBoxModel() { } } }