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