2022-09-17 22:13:35 +03:00
|
|
|
using System.Globalization;
|
|
|
|
using System.Net;
|
|
|
|
|
2022-11-18 03:15:53 +03:00
|
|
|
namespace CodeLiturgy.Data.Application
|
2022-09-17 22:13:35 +03:00
|
|
|
{
|
|
|
|
public class ApplicationDevice
|
|
|
|
{
|
|
|
|
public string Id { get; set; }
|
|
|
|
public ClientOperatingSystem ClientOperatingSystem { get; set; }
|
|
|
|
public ClientPlatformType ClientPlatformType { get; set; }
|
|
|
|
public string Resolution { get; set; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|