/*
* Immich
*
* Immich API
*
* The version of the OpenAPI document: 1.137.3
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct NotificationDeleteAllDto {
#[serde(rename = "ids")]
pub ids: Vec<uuid::Uuid>,
}
impl NotificationDeleteAllDto {
pub fn new(ids: Vec<uuid::Uuid>) -> NotificationDeleteAllDto {
NotificationDeleteAllDto {
ids,
}
}
}