using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace XImagingXhandler.XDAL
{
///
/// Tip头类型实体
///
public class TipType:INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
private string _tiptype_id;
///
/// Tip类型Id
///
public string tiptype_id
{
get { return _tiptype_id; }
set
{
_tiptype_id = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(nameof(tiptype_id)));
}
}
}
private string _tiptype_name;
///
/// Tip类型名称
///
public string tiptype_name
{
get { return _tiptype_name; }
set
{
_tiptype_name = value;
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(nameof(tiptype_name)));
}
}
}
}
}