12 lines
369 B
C#
12 lines
369 B
C#
namespace Parking_space_WebAPI.Models
|
|
{
|
|
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; }
|
|
}
|
|
}
|