15 lines
361 B
C#
15 lines
361 B
C#
|
using System.Globalization;
|
||
|
using System.Net;
|
||
|
|
||
|
namespace BlueWest.Data.Application
|
||
|
{
|
||
|
public class ApplicationDevice
|
||
|
{
|
||
|
public string Id { get; set; }
|
||
|
public ClientOperatingSystem ClientOperatingSystem { get; set; }
|
||
|
public ClientPlatformType ClientPlatformType { get; set; }
|
||
|
public string Resolution { get; set; }
|
||
|
}
|
||
|
}
|
||
|
|