using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Logging;
using Tango.Settings;
namespace Tango.MachineStudio.Common
{
public class MachineStudioSettings : SettingsBase
{
///
/// Gets or sets the last login email.
///
public String LastLoginEmail { get; set; }
///
/// Gets or sets the last login password.
///
public String LastLoginPassword { get; set; }
///
/// Gets or sets a value indicating whether to save the user credentials.
///
public bool RememberMe { get; set; }
///
/// Gets or sets the last virtual machine serial number.
///
public String LastVirtualMachineSerialNumber { get; set; }
///
/// Gets or sets the update service address.
///
public String UpdateServiceAddress { get; set; }
///
/// Gets or sets the logging categories.
///
public List LoggingCategories { get; set; }
///
/// Initializes a new instance of the class.
///
public MachineStudioSettings()
{
LoggingCategories = new List();
UpdateServiceAddress = "http://twine01/MachineStudioUpdateService/MachineStudioUpdateService.svc";
}
}
}