parking-webapi/WebApi_data_value/ViewModel/Single_violation_car_table.cs

10 lines
276 B
C#
Raw Normal View History

2024-02-01 13:48:38 +08:00
namespace WebApi_data_value.ViewModel
{
public class Single_violation_car_table
{
public string? violation_location_name { get; set; }
public string? license_plate_number { get; set; }
public DateTime? create_data_time { get; set; }
}
}