mirror of
https://github.com/dancojocaru2000/logic-circuits-simulator.git
synced 2025-02-22 17:19:36 +02:00
For now just the code, without UI that shows the simulation. However, the code works. Also added ground work for visual designer.
11 lines
364 B
Dart
11 lines
364 B
Dart
import 'package:freezed_annotation/freezed_annotation.dart';
|
|
import 'package:logic_circuits_simulator/models.dart';
|
|
|
|
part 'design_component.freezed.dart';
|
|
|
|
@freezed
|
|
class DesignComponentPageArguments with _$DesignComponentPageArguments {
|
|
const factory DesignComponentPageArguments({
|
|
required ComponentEntry component,
|
|
}) = _DesignComponentPageArguments;
|
|
}
|