1
0
Fork 0
mirror of https://gitlab.com/nkming2/nc-photos.git synced 2025-04-04 14:31:36 +02:00
nc-photos/codegen/lib/src/np_subject_accessor_annotations.dart

10 lines
148 B
Dart
Raw Normal View History

class NpSubjectAccessor {
const NpSubjectAccessor({
this.type,
});
final String? type;
}
const npSubjectAccessor = NpSubjectAccessor();