parking-webapi/WebApi_data_value/Models/Parking_spaces_total_table.cs

13 lines
374 B
C#
Raw Normal View History

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