mirror of
https://github.com/HChaZZY/PiliPlus.git
synced 2025-12-20 00:56:31 +08:00
10 lines
183 B
Dart
10 lines
183 B
Dart
class CcOnLock {
|
|
String? typeUrl;
|
|
|
|
CcOnLock({this.typeUrl});
|
|
|
|
factory CcOnLock.fromJson(Map<String, dynamic> json) => CcOnLock(
|
|
typeUrl: json['type_url'] as String?,
|
|
);
|
|
}
|