Files
Massmailer/Massmailer.Shared/Model/MassmailerProject.cs
2021-02-04 23:40:08 +01:00

23 lines
586 B
C#

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