Initial commit
v1.0
This commit is contained in:
28
HSUCO_CCTV_GetData/DataModel.cs
Normal file
28
HSUCO_CCTV_GetData/DataModel.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user