platform/angel_serialize_generator/test/models/author.g.dart

34 lines
580 B
Dart
Raw Normal View History

2017-12-07 07:08:32 +00:00
// GENERATED CODE - DO NOT MODIFY BY HAND
part of angel_serialize.test.models.author;
// **************************************************************************
// Generator: JsonModelGenerator
// **************************************************************************
2018-02-27 19:47:42 +00:00
class Author {
final String id;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final String name;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final int age;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final List books;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final Book newestBook;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final DateTime createdAt;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final DateTime updatedAt;
2017-12-07 07:08:32 +00:00
}
2018-02-27 19:47:42 +00:00
class Library {
final String id;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final Map collection;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final DateTime createdAt;
2017-12-07 07:08:32 +00:00
2018-02-27 19:47:42 +00:00
final DateTime updatedAt;
2017-12-07 07:08:32 +00:00
}