foxtive 0.25.6

Foxtive Framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use serde::Deserialize;
use uuid::Uuid;

#[derive(Deserialize)]
pub struct IdsVecDto {
    pub ids: Vec<Uuid>,
}

#[derive(Deserialize)]
pub struct IdUuidDto {
    pub id: Uuid,
}