Files
FlutterUnit/lib/model/github/license.dart
2020-06-19 09:59:57 +08:00

15 lines
255 B
Dart

part 'g/license.g.dart';
class License {
String name;
String spdxId;
License(this.name,this.spdxId);
factory License.fromJson(Map<String, dynamic> json) => _$LicenseFromJson(json);
Map<String, dynamic> toJson() => _$LicenseToJson(this);
}