mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-08 18:03:12 +00:00
18 lines
544 B
Dart
18 lines
544 B
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'dns_records.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
Map<String, dynamic> _$DnsRecordsToJson(DnsRecords instance) =>
|
|
<String, dynamic>{
|
|
'type': instance.type,
|
|
'name': instance.name,
|
|
'content': instance.content,
|
|
'ttl': instance.ttl,
|
|
'priority': instance.priority,
|
|
'proxied': instance.proxied,
|
|
};
|