using System; using System.Collections.Generic; using System.Text; namespace ControlCatalog.ViewModels { public class NotificationViewModel { public string Title { get; set; } public string Message { get; set; } } }