parking-webapi/WebApi_data_value/Models/Parking_spaces_history.cs

13 lines
401 B
C#
Raw Normal View History

2024-02-01 13:48:38 +08:00
namespace WebApi_data_value.Models
{
public class Parking_spaces_history
{
public string? parking_spaces_name { get; set; }
public string? license_plate_number { get; set; }
public string? car_img { get; set; }
public string? in_time { get; set; }
public string? out_time { get; set; }
public DateTime? data_create_time { get; set; }
}
}