Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Iyemon-018/b8083d846942569d7e7d6374edc2dd8c to your computer and use it in GitHub Desktop.
Save Iyemon-018/b8083d846942569d7e7d6374edc2dd8c to your computer and use it in GitHub Desktop.
using Prism.Mvvm;
namespace MaterialDesign.Dialog.Example.Dialogs.ViewModels
{
public class MessageDialogViewModel : BindableBase
{
private string _message;
public string Message
{
get => _message;
set => SetProperty(ref _message, value);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment