15 lines
197 B
Dart
15 lines
197 B
Dart
|
import 'package:objectbox/objectbox.dart';
|
||
|
|
||
|
@Entity()
|
||
|
class CaptureBox {
|
||
|
CaptureBox({
|
||
|
required this.type,
|
||
|
required this.uuid,
|
||
|
});
|
||
|
@Id()
|
||
|
int id = 0;
|
||
|
|
||
|
String type;
|
||
|
String uuid;
|
||
|
}
|