using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; using Tango.FSE.Common; namespace Tango.FSE.PPCConsole.Dialogs { public class MachineUpdateViewVM : FSEDialogViewVM { public TangoUpdate Update { get; set; } public MachineUpdateViewVM() { CanClose = false; OKText = "CLOSE"; HasDefault = true; } } }