using System;
|
using System.Collections.Generic;
|
using System.ComponentModel;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace XImagingXhandler.XDAL
|
{
|
/// <summary>
|
/// 圆形皿耗材形状
|
/// </summary>
|
public class LabwareRoundShape : INotifyPropertyChanged
|
{
|
public event PropertyChangedEventHandler PropertyChanged;
|
// Required
|
private int _roundshape_id;
|
/// <summary>
|
/// Id
|
/// </summary>
|
public int roundshape_id
|
{
|
get { return _roundshape_id; }
|
set
|
{
|
_roundshape_id = value;
|
if (PropertyChanged != null)
|
{
|
PropertyChanged(this, new PropertyChangedEventArgs(nameof(roundshape_id)));
|
}
|
}
|
}
|
|
// Required
|
private string _roundshape_name;
|
/// <summary>
|
/// 圆形皿形状名称
|
/// </summary>
|
public string roundshape_name
|
{
|
get { return _roundshape_name; }
|
set
|
{
|
_roundshape_name = value;
|
if (PropertyChanged != null)
|
{
|
PropertyChanged(this, new PropertyChangedEventArgs(nameof(roundshape_name)));
|
}
|
}
|
}
|
}
|
}
|