25 lines
672 B
C#
25 lines
672 B
C#
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; }
|
|
|
|
}
|
|
}
|