poke_data/models/
shape.rs

1use crate::models::localized_name_descriptions::LocalizedNameDescriptions;
2use serde::{Deserialize, Serialize};
3
4pub type ShapeId = u16;
5
6#[derive(Debug, Clone, Serialize, Deserialize)]
7pub struct Shape {
8    pub id: ShapeId,
9    pub identifier: String,
10    pub prose: LocalizedNameDescriptions,
11}