15 lines
197 B
Dart
Raw Normal View History

2024-11-13 21:22:29 +01:00
import 'package:objectbox/objectbox.dart';
@Entity()
class CaptureBox {
CaptureBox({
required this.type,
required this.uuid,
});
@Id()
int id = 0;
String type;
String uuid;
}