Files
BeWoPlaner/BeWo/ViewModel/FrequencyTranslation.cs
2016-06-27 01:45:38 +02:00

28 lines
667 B
C#

using System.ComponentModel;
using BS.Shared;
namespace BeWo.ViewModel
{
public class FrequencyTranslation : INotifyPropertyChanged
{
private string _Translation;
public event PropertyChangedEventHandler PropertyChanged;
public ResourceBookingFrequencyType Frequency { get; set; }
public string Translation
{
get { return _Translation; }
set
{
_Translation = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("Translation"));
}
}
}
}