Files
Kg.SeaTime/Service/Application.Domain.Entity/model/RankAwardModel.cs
2026-07-16 17:52:33 +08:00

8 lines
184 B
C#

namespace Application.Domain.Entity;
public class RankAwardModel
{
public int min { get; set; }
public int max { get; set; }
public List<TowerGet> award { get; set; }
}