parking-webapi/WebApi_data_value/Models/Parking_space_algorithm.cs
2024-03-05 19:49:58 +08:00

11 lines
297 B
C#

namespace Parking_space_WebAPI.Models
{
public class Parking_space_algorithm
{
public string? algorithm_name { get; set; }
public string? state { get; set; }
public string? run_time { get; set; }
public string? algorithm_serial_num { get; set; }
}
}