platform/example_star_wars/lib/src/models/starship.dart

12 lines
288 B
Dart
Raw Normal View History

import 'package:angel_model/angel_model.dart';
2018-08-04 15:01:49 +00:00
import 'package:angel_serialize/angel_serialize.dart';
2019-03-29 03:37:56 +00:00
import 'package:graphql_schema/graphql_schema.dart';
2019-01-23 19:52:02 +00:00
part 'starship.g.dart';
2018-08-04 15:01:49 +00:00
@serializable
2019-03-29 03:37:56 +00:00
@graphQLClass
2019-01-23 19:52:02 +00:00
abstract class _Starship extends Model {
String get name;
int get length;
}