Files
BeWoPlaner/Shared/DataContracts/ClientPartials/AssessmentSheetCategoryDC.cs

33 lines
796 B
C#
Raw Normal View History

2016-06-27 01:45:38 +02:00
using System.ComponentModel;
namespace BS.Shared.DataContracts
{
public partial class AssessmentSheetCategoryDC : INotifyPropertyChanged
{
private bool _IsSelected;
public event PropertyChangedEventHandler PropertyChanged;
public bool IsSelected
{
get
{
return this._IsSelected;
}
set
{
this._IsSelected = value;
this.RaisePropertyChanged("IsSelected");
}
}
private void RaisePropertyChanged(string p)
{
if (this.PropertyChanged != null)
{
this.PropertyChanged(this, new PropertyChangedEventArgs(p));
}
}
}
}