Initial Commit ...
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user