using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.Core.Commands; namespace Tango.FSE.Common.DemoMode { public class DemoModeCommand { public String Name { get; set; } public String Description { get; set; } public RelayCommand Command { get; set; } public static DemoModeCommand Create(Action action, String name, String description) { return new DemoModeCommand() { Command = new RelayCommand(action), Name = name, Description = description }; } } }