10 lines
279 B
C#
10 lines
279 B
C#
namespace Parking_space_WebAPI.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; }
|
|
}
|
|
}
|