using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using Tango.SharedUI;
namespace Tango.PPC.UI.Notifications
{
///
/// Represents a dialog and view couple.
///
public class DialogAndView
{
///
/// Gets or sets the vm.
///
public DialogViewVM VM { get; set; }
///
/// Gets or sets the view.
///
public FrameworkElement View { get; set; }
///
/// Initializes a new instance of the class.
///
public DialogAndView()
{
}
///
/// Initializes a new instance of the class.
///
/// The vm.
/// The view.
public DialogAndView(DialogViewVM vm, FrameworkElement view) : this()
{
VM = vm;
View = view;
}
}
}