parking-webapi/WebApi_data_value/Models/Parking_spaces_roi.cs

18 lines
528 B
C#
Raw Normal View History

2024-03-05 19:49:58 +08:00
namespace Parking_space_WebAPI.Models
2024-02-01 13:48:38 +08:00
{
public class Parking_spaces_roi
{
public string? parking_spaces_name { get; set; }
public string? cam_ip { get; set; }
public string? roi_x1 { get; set; }
public string? roi_x2 { get; set; }
public string? roi_y1 { get; set; }
public string? roi_y2 { get; set; }
public string? roi_function { get; set; }
public string? mode { get; set; }
public DateTime? data_create_time { get; set; }
}
}