学考乐离线App
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DialogEventAction.kt 368B

1234567891011121314151617
  1. package com.xkl.cdl.dialog
  2. /**
  3. * author suliang
  4. * create 2022/4/6 9:54
  5. * Describe: LearnDialog 按钮点击动作
  6. */
  7. enum class DialogEventAction {
  8. /**下一步*/
  9. NEXT,
  10. /** 开始学习 */
  11. START_LEARN,
  12. /** 课时学前测试 */
  13. START_LESSON_BEFORE_TEST
  14. // TODO: 2022/4/6 可以添加相应的动作action,来处理对应的动作
  15. }