basic ui created

This commit is contained in:
2021-02-04 23:40:08 +01:00
parent bf57e3a983
commit 47310b17dc
4 changed files with 225 additions and 17 deletions

View File

@@ -1,18 +1,22 @@
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel;
namespace Massmailer.Shared.Model
{
public class MassmailerProject
public class MassmailerProject : INotifyPropertyChanged
{
public MassmailerProject()
{
this.Recipients = new List<MassmailerRecipient>();
this.Recipients = new ObservableCollection<MassmailerRecipient>();
}
public List<MassmailerRecipient> Recipients { get; set; }
public ObservableCollection<MassmailerRecipient> Recipients { get; set; }
public string Subject { get; set; }
public string Body { get; set; }
public event PropertyChangedEventHandler PropertyChanged;
}
}