using System.Windows.Input;
namespace Rusted_Warfare_Hub.ViewModels
{
public class CreateGuideVM : VMBase
{
public ICommand BoldTextCommand { get; }
public CreateGuideVM()
{
BoldTextCommand = new VMCommand(ExecuteBoldTextCommand);
}
private void ExecuteBoldTextCommand()
{
}
}
}