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
+24
View File
@@ -0,0 +1,24 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LC_AddCheckToDb.Models
{
internal class Cams
{
public string Id { get; set; }
public string Type { get; set; }
public string Ip { get; set; }
public string Access { get; set; }
public string ImgUrl { get; set; }
public string RecPoint { get; set; }
public string ChannelRec { get; set; }
public string SwitchConnect { get; set; }
public string SwitchPort { get; set; }
public string Name { get; set; }
public string Groupe { get; set; }
}
}
+34
View File
@@ -0,0 +1,34 @@
using System.ComponentModel.DataAnnotations;
using System.Reflection.Metadata;
namespace LC_AddCheckToDb.Models
{
public class Error
{
[Key]
public int Id { get; set; }
public typeDev TypeDev { get; set; }
public int? MsgId { get; set; }
public statusDev? Status { get; set; }
public string? Name { get; set; }
public string? Ip { get; set; }
public DateTime? DataError { get; set; }
}
public enum typeDev
{
Unknown = 0,
Camera,
SABRA,
vServer,
Server,
Switch,
DVR,
ARM
}
public enum statusDev
{
Off = 0,
On,
Unknown
}
}