31 lines
455 B
Dart
31 lines
455 B
Dart
library titama.messages;
|
|
|
|
import 'package:rpc/rpc.dart';
|
|
|
|
class Course {
|
|
@ApiProperty(required: true)
|
|
String title;
|
|
|
|
@ApiProperty(required: true)
|
|
String time;
|
|
|
|
@ApiProperty(required: true)
|
|
String day;
|
|
|
|
@ApiProperty(defaultValue: "")
|
|
String kind;
|
|
|
|
@ApiProperty(defaultValue: "")
|
|
String place;
|
|
|
|
@ApiProperty(defaultValue: "")
|
|
String prof;
|
|
|
|
@ApiProperty(defaultValue: "")
|
|
String turnin;
|
|
|
|
@ApiProperty()
|
|
int id;
|
|
|
|
Course();
|
|
}
|