2026-04-30 11:18:02 +03:00

17 lines
288 B
C#

using System;
namespace CrystallineConflictWinsTracker;
public class PvpWinEntry
{
public bool ranked { get; set; }
public bool win { get; set; }
public uint classId { get; set; }
public string className { get; set; }
public DateTime? matchDate { get; set; }
}