32 lines
1.0 KiB
C#
32 lines
1.0 KiB
C#
using xCommons.Constants;
|
|
using xModels.Base;
|
|
|
|
namespace xModels.Dtos {
|
|
public class XDeviceDto : XBaseDto {
|
|
/// <summary>
|
|
/// Operating System
|
|
/// </summary>
|
|
/// <value>device operating system identifier</value>
|
|
public string Os { get; set; }
|
|
/// <summary>
|
|
/// Operating System Version
|
|
/// </summary>
|
|
/// <value>which version of operatin system is in use</value>
|
|
public string OsVersion { get; set; }
|
|
/// <summary>
|
|
/// Device Browser
|
|
/// </summary>
|
|
/// <value>the Browser identifier</value>
|
|
public string Browser { get; set; }
|
|
/// <summary>
|
|
/// Browser Engine Agent
|
|
/// </summary>
|
|
/// <value>browser engine Agent</value>
|
|
public string UserAgent { get; set; }
|
|
/// <summary>
|
|
/// Type of client Device
|
|
/// </summary>
|
|
/// <value>represent device type <see>XDeviceType</see></value>
|
|
public XDeviceType DeviceType { get; set; }
|
|
}
|
|
} |