13 lines
374 B
C#
13 lines
374 B
C#
|
namespace Parking_space_WebAPI.Models
|
|||
|
{
|
|||
|
public class Parking_spaces_total_table
|
|||
|
{
|
|||
|
public string? parking_spaces_name { get; set; }
|
|||
|
public string? parking_spaces_total_num { get; set; }
|
|||
|
public string? longitude { get; set; }
|
|||
|
public string? latitude { get; set; }
|
|||
|
public string? parking_spaces_now_num { get; set; }
|
|||
|
|
|||
|
}
|
|||
|
}
|