export class TraitDto {
  /**
   * Total tiers for the trait.
   */
  tier_total: number
  /**
   * Trait name.
   */
  name: string
  /**
   * Current active tier for the trait.
   */
  tier_current: number
  /**
   * Number of units with this trait.
   */
  num_units: number
}
