diff options
Diffstat (limited to 'client/src/model/Pose.scala')
-rw-r--r-- | client/src/model/Pose.scala | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/client/src/model/Pose.scala b/client/src/model/Pose.scala new file mode 100644 index 0000000..e073466 --- /dev/null +++ b/client/src/model/Pose.scala @@ -0,0 +1,11 @@ +package yoga.model + +import java.net.URI + +final case class Pose( + name: String, + otherNames: Seq[String] = Nil, + category: PoseCategory, + image: URI, + rights: FileRights +) |