Files
mapo-core/MP.Data/DbModels/Utils/StatsStatusCodeModel.cs
2026-05-11 09:13:01 +02:00

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; }
}
}