parking-webapi/WebApi_data_value/Models/Violation_car_table.cs

12 lines
369 B
C#
Raw Permalink 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 Violation_car_table
{
public string? violation_location_name { get; set; }
public string? license_plate_number { get; set; }
public string? car_start_img { get; set; }
public string? car_end_img { get; set; }
public DateTime? create_data_time { get; set; }
}
}