using System.Collections.Generic; namespace Massmailer.Shared.Model { public class MassmailerProject { public MassmailerProject() { this.Recipients = new List(); } public List Recipients { get; set; } public string Subject { get; set; } public string Body { get; set; } } }