using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XImagingXhandler.XDAL
{
///
/// 圆形皿耗材高度
///
public class LabwareRoundHeight
{
public event PropertyChangedEventHandler PropertyChanged;
// Required
private int _roundheight_id;
///
/// Id
///
public int roundheight_id
{
get { return _roundheight_id; }
set
{
_roundheight_id = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(nameof(roundheight_id)));
}
}
}
// Required
private string _roundheight_name;
///
/// 圆形皿高度名称
///
public string roundheight_name
{
get { return _roundheight_name; }
set
{
_roundheight_name = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(nameof(roundheight_name)));
}
}
}
}
}