C00225155-02/C00225155/MegaRobo.C00225155/Common/BottleModels/SourceLiquidBottleBoxModel.cs

40 lines
1.1 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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;
///// <summary>
///// 是否有原液瓶工装
///// </summary>
//public bool HaveBox
//{
// get { return havebox; }
// set { SetProperty(ref havebox, value); }
//}
private ObservableCollection<SourceLiquidBottleModel> sourceliquidbottlecollection;
/// <summary>
/// 一个原液瓶工装中的原液瓶集合8个原液瓶
/// </summary>
public ObservableCollection<SourceLiquidBottleModel> SourceLiquidBottleCollection
{
get { return sourceliquidbottlecollection; }
set { SetProperty(ref sourceliquidbottlecollection, value); }
}
public SourceLiquidBottleBoxModel()
{
}
}
}