platform/angel_serialize_generator/test/models/book.g.dart
2018-02-27 14:57:05 -05:00

32 lines
636 B
Dart

// GENERATED CODE - DO NOT MODIFY BY HAND
part of angel_serialize.test.models.book;
// **************************************************************************
// Generator: JsonModelGenerator
// **************************************************************************
class Book extends _Book {
Book(
{this.id,
this.author,
this.title,
this.description,
this.pageCount,
this.createdAt,
this.updatedAt});
final String id;
final String author;
final String title;
final String description;
final int pageCount;
final DateTime createdAt;
final DateTime updatedAt;
}