Initial commit

v1.0
This commit is contained in:
2023-03-14 17:36:34 +09:00
parent 834b3c06d1
commit e28b304254
10 changed files with 1128 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
[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 struct DetailData
{
public string ServerName { get; set; }
public string ServerIP { get; set; }
public string Name { get; set; }
public string IP { get; set; }
public string ID { get; set; }
public string Password { get; set; }
}