aboutsummaryrefslogtreecommitdiff
path: root/client/src/model/Pose.scala
blob: e073466039b2d1e2a957cb959c86bacd76ecdcbc (plain)
1
2
3
4
5
6
7
8
9
10
11
package yoga.model

import java.net.URI

final case class Pose(
  name: String,
  otherNames: Seq[String] = Nil,
  category: PoseCategory,
  image: URI,
  rights: FileRights
)