using System.Collections.Generic; using WingInterfaceLibrary.Enum; namespace Vinno.vCloud.Common.FIS { /// /// The class define the connect server info. /// public class ConnectionInfo { /// /// Gets or sets the server info. /// public string ServerUrl { get; set; } /// /// Gets or sets the account info. /// public AccountInfo Account { get; set; } /// /// Gets or sets the organization. /// public string Organization { get; set; } /// /// Gets or sets the ultrasound machine mode. /// public string DeviceMode { get; set; } /// /// Gets or sets the serial number of the ultrasound machine. /// public string SerialNumber { get; set; } /// /// Gets or sets the cpu of the ultrasound machine. /// public string USCPU { get; set; } /// /// Gets or sets the os of the ultrasound machine. /// public string USOS { get; set; } /// /// Gets or sets the sofware version of the ultrasound machine. /// public string SoftwareVersion { get; set; } /// /// Gets or sets the enabled features. /// public IEnumerable EnabledFeatures { get; set; } /// /// Gets or sets the login source. /// public LoginSource LoginSource { get; set; } /// /// Gets or sets the platform /// public Platform Platform { get; set; } /// /// Device Type /// public string DeviceType { get; set; } /// /// Gets or sets the base folder. /// public string FISFolder { get; set; } /// /// Gets or sets the screen with. /// public int USScreenWidth { get; set; } /// /// Gets or sets the screen height. /// public int USScreenHeight { get; set; } /// /// Gets or sets the if it is used to register account /// public bool IsOnlyUsedToRegister { get; set; } /// /// Language Name /// public string LanguageName { get; set; } } /// /// The class define the account info, include us account and user account. /// public class AccountInfo { /// /// Gets or sets the name. /// public string Name { get; set; } /// /// Gets or sets the password. /// public string Password { get; set; } /// /// Gets or sets the value to indicate whether the us account is the user defined or dongle id. /// public bool IsUserDefined { get; set; } } }