using System;
using System.Collections.Generic;
namespace CouponReport.Models.Parkingeyes;
public partial class Camera
{
///
/// 攝影機序號
///
public string CameraId { get; set; } = null!;
///
/// IP
///
public string Ip { get; set; } = null!;
///
/// 種類
///
public int? CameraTypeId { get; set; }
///
/// 啟用否
///
public string? Enable { get; set; }
///
/// AI的IP,暫時為背景寫入值
///
public string AiLocation { get; set; } = null!;
public virtual TypeDef? CameraType { get; set; }
public virtual ICollection ParkingLots { get; set; } = new List();
}