mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-23 07:50:42 +00:00
10 lines
147 B
Dart
10 lines
147 B
Dart
|
class ReadingValue {
|
||
|
final String label;
|
||
|
final String value;
|
||
|
|
||
|
const ReadingValue({
|
||
|
required this.label,
|
||
|
required this.value,
|
||
|
});
|
||
|
}
|