Files
Proftaak-RH-B4/DoctorApp/Utils/ObservableObject.cs
2020-10-12 12:50:38 +02:00

13 lines
276 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Text;
namespace DoctorApp.Utils
{
public abstract class ObservableObject : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
}
}