Aggiunta nuovi modelli dati x errori e statusCode + migration
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user