MDReadingStatus

public enum MDReadingStatus : String, Codable

User-defined status of a manga

  • The user has bookmarked the manga

    Declaration

    Swift

    case reading = "reading"
  • The user has marked their reading of this manga as “on hold”

    Declaration

    Swift

    case onHold = "on_hold"
  • The user has marked this manga as to read later

    Declaration

    Swift

    case planToRead = "plan_to_read"
  • The user has marked this manga as dropped, and no longer reading

    Declaration

    Swift

    case dropped = "dropped"
  • This user has marked that they are reading this chapter another time

    Declaration

    Swift

    case reReading = "re_reading"
  • The user has marked the manga as read

    Declaration

    Swift

    case completed = "completed"