Files
Kg.SeaTime/Service/Application.Domain.Entity/model/MapResModel.cs
2026-06-05 18:06:38 +08:00

11 lines
295 B
C#

namespace Application.Domain.Entity;
public class MapResModel
{
public string resId { get; set; }
public string resName { get; set; }
public int lev { get; set; }
public long lockTime { get; set; }
public int needVigour { get; set; }
public int gather { get; set; }
}