Files
marechai/Cicm.Database/Models/BrowserTest.cs

23 lines
860 B
C#
Raw Normal View History

2018-08-05 23:11:15 +01:00
namespace Cicm.Database.Models
{
2018-08-06 21:27:14 +01:00
public class BrowserTest
2018-08-05 23:11:15 +01:00
{
public int Id { get; set; }
public string UserAgent { get; set; }
public string Browser { get; set; }
public string Version { get; set; }
public string Os { get; set; }
public string Platform { get; set; }
2018-08-06 21:48:51 +01:00
public bool Gif87 { get; set; }
public bool Gif89 { get; set; }
public bool Jpeg { get; set; }
public bool Png { get; set; }
public bool Pngt { get; set; }
public bool Agif { get; set; }
public bool Table { get; set; }
public bool Colors { get; set; }
public bool Js { get; set; }
public bool Frames { get; set; }
public bool Flash { get; set; }
2018-08-05 23:11:15 +01:00
}
}