parking-webapi/WebApi_data_value/Models/Parking_space_algorithm.cs

11 lines
297 B
C#
Raw Normal View History

2024-09-28 01:25:42 +08:00
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; }
}
}