22 lines
604 B
C#
22 lines
604 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LC_Api
|
|
{
|
|
public class Cam
|
|
{
|
|
[Key]
|
|
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? Map { get; set; }
|
|
|
|
}
|
|
}
|