poke_data/models/
contest_type.rs1use crate::models::localized_names::LocalizedStrings;
2use serde::{Deserialize, Serialize};
3
4pub type ContestTypeId = u8;
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
7pub struct ContestType {
8 pub id: ContestTypeId,
9 pub identifier: String,
10 pub names: LocalizedStrings,
11}