18 lines
506 B
C#
18 lines
506 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace MP.Data.DbModels.Utils
|
|
{
|
|
[Table("stats_status_codes")]
|
|
public class StatsStatusCodeModel
|
|
{
|
|
[Key] public int Id { get; set; }
|
|
public string Destination { get; set; } = "";
|
|
public string Type { get; set; } = "";
|
|
public DateTime Hour { get; set; }
|
|
public int StatusCode { get; set; }
|
|
public long Count { get; set; }
|
|
}
|
|
}
|