16 lines
502 B
C#
16 lines
502 B
C#
namespace Parking_space_WebAPI.Models
|
|
{
|
|
public class Parking_spaces_cam_ptz
|
|
{
|
|
public string? parking_spaces_name { get; set; }
|
|
public string? rtsp_url { get; set; }
|
|
public string? rtsp_port { get; set; }
|
|
public string? http_port { get; set; }
|
|
public string? mode { get; set; }
|
|
public string? img { get; set; }
|
|
public string? pan { get; set; }
|
|
public string? titl { get; set; }
|
|
public string? zoom { get; set; }
|
|
}
|
|
}
|