1
2
3
4
5
6
7
8
9
use crate::utils::{ObjectId, Transformations};

#[cfg_attr(feature = "serialize", derive(Serialize, Deserialize))]
#[derive(Clone,Debug)]
pub struct Empty{
    pub name: ObjectId,
    pub transformations: Transformations,
    pub default_action: Option<ObjectId>,
}