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