mirror of
https://github.com/m5stack/StackChan.git
synced 2026-04-28 03:22:39 +00:00
15 lines
269 B
Dart
15 lines
269 B
Dart
/*
|
|
SPDX-FileCopyrightText: 2026 M5Stack Technology CO LTD
|
|
SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
class UploadFile {
|
|
final String? path;
|
|
|
|
UploadFile({this.path});
|
|
|
|
factory UploadFile.fromJson(Map<String, dynamic> json) {
|
|
return UploadFile(path: json['path']);
|
|
}
|
|
}
|