Files
Kg.SeaTime/Service/Application.Domain.Entity/model/MapTemp.cs
Putoo 8550d85659 222
2026-06-02 17:58:36 +08:00

9 lines
216 B
C#

namespace Application.Domain.Entity;
public class MapTemp
{
public int cityId { get; set; }
public string cityName { get; set; }
public int copper { get; set; }
public int distance { get; set; }
}