Files
plezy/lib/media/media_role.dart
T
2026-05-01 01:20:36 +02:00

10 lines
238 B
Dart

/// A cast or crew member attached to a media item.
class MediaRole {
final String? id;
final String tag;
final String? role;
final String? thumbPath;
const MediaRole({this.id, required this.tag, this.role, this.thumbPath});
}