This commit is contained in:
Putoo
2026-06-02 17:58:36 +08:00
parent eb81a1c381
commit 8550d85659
11 changed files with 392 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
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; }
}