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.
11 lines
304 B
11 lines
304 B
package com.xsn.explorer.models
|
|
|
|
import com.alexitc.playsonify.models.WrappedInt
|
|
import play.api.libs.json.{JsPath, Reads}
|
|
|
|
case class Confirmations(int: Int) extends AnyVal with WrappedInt
|
|
|
|
object Confirmations {
|
|
|
|
implicit val reads: Reads[Confirmations] = JsPath.read[Int].map(Confirmations.apply)
|
|
}
|
|
|