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