using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.FSE.Common; namespace Tango.FSE.Procedures { internal class DialogControllerVM : FSEDialogViewVM { public DialogControllerVM() { AutoMode = false; CanClose = true; CanCancel = true; } } }