1use serde::Serialize; 2 3#[derive(Debug, Clone, Serialize)] 4pub struct Grade { 5 pub code: String, 6 pub subject: String, 7 pub grade: String, 8}