mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-02-02 06:46:22 +01:00
9 lines
148 B
Dart
9 lines
148 B
Dart
class NpSubjectAccessor {
|
|
const NpSubjectAccessor({
|
|
this.type,
|
|
});
|
|
|
|
final String? type;
|
|
}
|
|
|
|
const npSubjectAccessor = NpSubjectAccessor();
|