section_state.dart 561 Bytes
part of 'section_bloc.dart';

@immutable
abstract class SectionState {}

class LessonInitial extends SectionState {}

class LessonDataLoadState extends SectionState {}

class RequestVideoLessonState extends SectionState {
  final String courseLessonId;
  final int type;

  RequestVideoLessonState(this.courseLessonId, this.type);
}

class RequestEnterClassState extends SectionState {
  final String courseLessonId;
  final int courseType;

  RequestEnterClassState(this.courseLessonId, this.courseType);
}

class CurrentPageIndexState extends SectionState {}