11 lines
238 B
C#
11 lines
238 B
C#
using Material.Dialog.Views;
|
|
|
|
namespace Material.Dialog.ViewModels
|
|
{
|
|
public class AlertDialogViewModel : DialogWindowViewModel
|
|
{
|
|
public AlertDialogViewModel(AlertDialog dialog) : base(dialog)
|
|
{
|
|
}
|
|
}
|
|
} |