mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 01:06:21 +01:00
25 lines
437 B
Dart
25 lines
437 B
Dart
|
import 'package:equatable/equatable.dart';
|
||
|
import 'package:to_string/to_string.dart';
|
||
|
|
||
|
part 'face_recognition_face.g.dart';
|
||
|
|
||
|
@toString
|
||
|
class FaceRecognitionFace with EquatableMixin {
|
||
|
const FaceRecognitionFace({
|
||
|
required this.id,
|
||
|
required this.fileId,
|
||
|
});
|
||
|
|
||
|
@override
|
||
|
String toString() => _$toString();
|
||
|
|
||
|
@override
|
||
|
List<Object?> get props => [
|
||
|
id,
|
||
|
fileId,
|
||
|
];
|
||
|
|
||
|
final int id;
|
||
|
final int fileId;
|
||
|
}
|