feat(props): add properties for optimize calculates

This commit is contained in:
doryan 2024-08-15 23:32:05 +04:00
parent cedb844826
commit 839694edc1

View File

@ -31,6 +31,12 @@ pub struct SignalReduce {
pub struct Frequency {
#[property(get, set)]
frequency: Cell<f64>,
#[property(get, set)]
reactive_resist: Cell<f64>,
#[property(get, set)]
full_resistance: Cell<f64>,
#[property(get, set)]
signal_source_voltage: Cell<f64>,
}
#[glib::derived_properties]