using System.Collections.Generic; namespace SiteStatus.Dbo { public class HostStatusDbo { public string Ip { get; set; } public string Hostname { get; set; } public IList Times { get; set; } } }