Files
xueguang_flutter_app/lib/data/models/student.dart
2025-11-19 23:20:51 +08:00

17 lines
283 B
Dart

///学生视频的模型
class Student {
final String id;
final String name;
final bool cameraOn;
final bool micOn;
final bool muted;
Student({
required this.id,
required this.name,
this.cameraOn = true,
this.micOn = true,
this.muted = true,
});
}