using System.Collections.Generic; namespace TOOHUCardAPI.DTO.RankData { public class RankCardDTO { public string ItemName { get; set; } public int Star { get; set; } public long Damage { get; set; } public int Power { get; set; } public int Attack { get; set; } public Dictionary Equip { get; set; } } }