MiniDigger/Hangar

View on GitHub
models/src/main/scala/ore/db/impl/common/Downloadable.scala

Summary

Maintainability
A
0 mins
Test Coverage
package ore.db.impl.common

/**
  * Represents a model that keeps track of downloads.
  */
trait Downloadable {

  /**
    * The amount of downloads the model has.
    *
    * @return Downloads model has
    */
  def downloadCount: Long

}