You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
509 B
20 lines
509 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ISPChk.Models
|
|
{
|
|
public class PingItem
|
|
{
|
|
[Key]
|
|
public long PingId { get; set; }
|
|
public DateTime Date { get; set; }
|
|
public float Min { get; set; }
|
|
public float Max { get; set; }
|
|
public float Avg { get; set; }
|
|
public int Failures { get; set; }
|
|
public long HostId { get; set; }
|
|
}
|
|
}
|