using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ERP.Model { public class IpInformationModel { public string IpAddress { get; set; } public string DeviceName { get; set; } public string BrowserName { get; set; } public string DeviceType { get; set; } } }