// Copyright 2024 the Velato Authors
// SPDX-License-Identifier: Apache-2.0 OR MIT
usesuper::animated_property::AnimatedProperty;useserde::{Deserialize, Serialize};/// aka Value, in the Schema.
////// An animatable property that holds a float.
#[derive(Deserialize, Serialize, Debug, Clone, PartialEq)]pubstructFloatValue{#[serde(flatten)]pubanimated_property:AnimatedProperty<f64>,
}