ConvertType.swift 313 B

12345678910111213141516171819
  1. //
  2. // ConvertType.swift
  3. // Runner
  4. //
  5. // Created by Xiaolong Liu on 2023/2/27.
  6. //
  7. import Foundation
  8. enum ConvertType: String {
  9. case PPT = "PPT"
  10. case EXCEL = "EXCEL"
  11. case WORD = "WORD"
  12. case TXT = "TXT"
  13. case IMAGE = "IMAGE"
  14. case CSV = "CSV"
  15. case RTF = "RTF"
  16. case HTML = "HTML"
  17. }