Initial commit

v1.0
This commit is contained in:
2023-03-14 17:30:09 +09:00
parent fa3fe72e21
commit 59dac350d8
25 changed files with 2072 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
using System;
using System.Collections.Generic;
namespace HSUCO_Server_Monitoring
{
[Serializable]
public struct Config
{
public List<Information> NVR { get; set; }
public List<Information> CCTV { get; set; }
public int NVR_DelayTime { get; set; }
public int CCTV_DelayTime { get; set; }
public struct Information
{
public string Name { get; set; }
public string IpAddress { get; set; }
}
}
public enum MessageSender
{
NVR,
CCTV
}
public enum StatusResult
{
Success,
Fail,
Inspection
}
}