mirror of
https://github.com/jagandeepbrar/lunasea.git
synced 2026-08-31 12:42:34 +00:00
12 lines
151 B
Dart
12 lines
151 B
Dart
class LunaFile {
|
|
List<int> data;
|
|
String name;
|
|
String? path;
|
|
|
|
LunaFile({
|
|
required this.data,
|
|
required this.name,
|
|
this.path,
|
|
});
|
|
}
|