Add FriendRequestSendSchema

This commit is contained in:
Flori Weber 2023-06-15 19:01:01 +02:00
parent e971ed2b49
commit cd303b0fef
No known key found for this signature in database
GPG Key ID: 0ACD574FCF5226CF
1 changed files with 6 additions and 0 deletions

View File

@ -30,3 +30,9 @@ pub enum RelationshipType {
Friends = 1,
None = 0,
}
#[derive(Deserialize, Serialize, Debug)]
pub struct FriendRequestSendSchema {
pub username: String,
pub discriminator: Option<String>,
}