using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.FSE.Common;
using Tango.Integration.ExternalBridge;
using Tango.SharedUI;
namespace Tango.FSE.UI.Dialogs
{
///
/// Represents a machine connection base view model.
///
///
public abstract class MachineConnectionBaseViewVM : FSEDialogViewVM
{
///
/// Gets the machine serial number.
///
///
public abstract string GetMachineSerialNumber();
///
/// Initializes a new instance of the class.
///
public MachineConnectionBaseViewVM() : base()
{
AutoMode = true;
CancelText = "CANCEL";
OKText = "CONNECT";
HasDefault = true;
}
}
}