pokemon_tcg_sdk/card/
legality.rs

1use serde::{Deserialize, Serialize};
2
3#[derive(Debug, Clone, Deserialize, Serialize)]
4pub struct Legality {
5    pub standard: Option<String>,
6    pub expanded: Option<String>,
7    pub unlimited: Option<String>,
8}