using System.Collections.Generic; namespace Ombi.Notifications.Models { public class NotificationMessage { public string Subject { get; set; } public string Message { get; set; } public string To { get; set; } public Dictionary Other { get; set; } = new Dictionary(); public IDictionary Data { get; set; } = new Dictionary(); } }