mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-04-04 14:31:36 +02:00
10 lines
148 B
Dart
10 lines
148 B
Dart
|
class NpSubjectAccessor {
|
||
|
const NpSubjectAccessor({
|
||
|
this.type,
|
||
|
});
|
||
|
|
||
|
final String? type;
|
||
|
}
|
||
|
|
||
|
const npSubjectAccessor = NpSubjectAccessor();
|