make MetadataFields be public

master
Jennifer Glauche 5 years ago committed by Paul Woolcock
parent 3d0ecb9e41
commit 1dd2963cf3
  1. 4
      src/entities/account.rs

@ -54,8 +54,8 @@ pub struct Account {
/// A single name: value pair from a user's profile
#[derive(Debug, Clone, Serialize, Deserialize, PartialEq, Default)]
pub struct MetadataField {
name: String,
value: String,
pub name: String,
pub value: String,
}
impl MetadataField {

Loading…
Cancel
Save