diff --git a/entities/src/attachment.rs b/entities/src/attachment.rs index 1ad9c3a..fa8a781 100644 --- a/entities/src/attachment.rs +++ b/entities/src/attachment.rs @@ -38,13 +38,13 @@ pub struct Meta { #[derive(Debug, Deserialize, Serialize, Clone, PartialEq)] pub struct ImageDetails { /// width of attachment. - width: u64, + pub width: u64, /// height of attachment. - height: u64, + pub height: u64, /// A string of `widthxheight`. - size: Option, + pub size: Option, /// The aspect ratio of the attachment. - aspect: Option, + pub aspect: Option, } /// The type of media attachment.