baldeau 3b4fb7f85c
Some checks failed
xiao_pet_tracker / semantic-pull-request (push) Failing after 0s
xiao_pet_tracker / build (push) Failing after 0s
xiao_pet_tracker / spell-check (push) Failing after 0s
release 1.0
2024-11-13 21:22:29 +01:00

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;
}