1 2//! `ApplyUpdate` response DTO. 3 4#[derive(Debug, Clone)] 5pub struct Struct { 6 pub success:bool, 7 8 pub error:String, 9}