using System.Collections.Generic; namespace TOOHUCardAPI.DTO.RankData { public class RankEntryDTO { public string RankType { get; set; } public long SteamId { get; set; } public long UserId { get; set; } public string Username { get; set; } public string Version { get; set; } public int Wave { get; set; } public long Damage { get; set; } // need cards here public List Cards { get; set; } } }