mirror of
https://github.com/bggRGjQaUbCoE/PiliPlus.git
synced 2026-04-20 19:14:42 +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?,
|
|
);
|
|
}
|