14 lines
266 B
Dart
14 lines
266 B
Dart
class Session {
|
|
final String sessId;
|
|
final String title;
|
|
|
|
Session({required this.sessId, required this.title});
|
|
|
|
factory Session.fromJson(Map<String, dynamic> json) {
|
|
return Session(
|
|
sessId: json['sessId'],
|
|
title: json['title'],
|
|
);
|
|
}
|
|
}
|