Blame view

lib/pages/home/bloc/home_state.dart 481 Bytes
60e47f7c   liangchengyou   feat:课程选择功能
1
2
3
4
5
6
  part of 'home_bloc.dart';
  
  @immutable
  abstract class HomeState {}
  
  class HomeInitial extends HomeState {}
13e6d11d   liangchengyou   feat:首页课程模块接口
7
8
  
  class HomeDataLoadState extends HomeState {}
3c1d5c64   liangchengyou   feat:练习功能完成
9
10
  
  class RequestVideoLessonState extends HomeState {
934e2b47   liangchengyou   feat:权限调整+课程进度接口对接
11
    final String courseLessonId;
3c1d5c64   liangchengyou   feat:练习功能完成
12
    final int type;
934e2b47   liangchengyou   feat:权限调整+课程进度接口对接
13
14
15
16
17
18
19
    RequestVideoLessonState(this.courseLessonId,this.type);
  }
  
  class RequestEnterClassState extends HomeState{
    final String courseLessonId;
    final int courseType;
    RequestEnterClassState(this.courseLessonId,this.courseType);
3c1d5c64   liangchengyou   feat:练习功能完成
20
  }