Lots of data and model setup

This commit is contained in:
gamer147
2025-05-18 02:27:17 -04:00
parent 79505e0c1a
commit b2024af852
77 changed files with 81988 additions and 433 deletions

View File

@@ -0,0 +1,23 @@
using DCGEngine.Database.Models;
namespace SVSim.Database.Models;
public class RankInfoEntry : BaseEntity<int>
{
public string Name { get; set; } = string.Empty;
public int NecessaryPoint { get; set; }
public int AccumulatePoint { get; set; }
public int LowerLimitPoint { get; set; }
public int BaseAddBp { get; set; }
public int BaseDropBp { get; set; }
public int StreakBonusPt { get; set; }
public double WinBonus { get; set; }
public double LoseBonus { get; set; }
public int MaxWinBonus { get; set; }
public int MaxLoseBonus { get; set; }
public int IsPromotionWar { get; set; }
public int MatchCount { get; set; }
public int NecessaryWin { get; set; }
public int ResetLose { get; set; }
public int AccumulateMasterPoint { get; set; }
}