11 lines
297 B
C#
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; }
|
|||
|
}
|
|||
|
}
|