feat: account strike CRUD API

This commit is contained in:
Paul Makles
2023-05-31 13:39:13 +01:00
parent edfa8e5256
commit a9a5af8cc8
10 changed files with 129 additions and 2 deletions

View File

@@ -10,6 +10,12 @@ auto_derived!(
/// Attached reason
pub reason: String,
}
/// # Strike Data
pub struct DataEditAccountStrike {
/// New attached reason
pub reason: String,
}
);
#[cfg(feature = "from_database")]