basic ui created
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user