add projects
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 13s

This commit is contained in:
2026-03-18 15:37:59 +03:00
parent ed55e77e98
commit bf51924adb
158 changed files with 82479 additions and 1 deletions
+19
View File
@@ -0,0 +1,19 @@
using System.ComponentModel.DataAnnotations;
namespace LC_Bot.Models
{
public class Error
{
[Key]
public Guid Id { get; set; }
public string? TypeDev { get; set; }
public int MsgId { get; set; }
public string? Status { get; set; }
public string? Name { get; set; }
public string? Ip { get; set; }
public string? Map { get; set; }
public DateTime? DataError { get; set; }
}
}