aboutsummaryrefslogtreecommitdiff
path: root/src/main/scala/xyz/driver/common/domain/Label.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/scala/xyz/driver/common/domain/Label.scala')
-rw-r--r--src/main/scala/xyz/driver/common/domain/Label.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/main/scala/xyz/driver/common/domain/Label.scala b/src/main/scala/xyz/driver/common/domain/Label.scala
deleted file mode 100644
index 2214216..0000000
--- a/src/main/scala/xyz/driver/common/domain/Label.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-package xyz.driver.common.domain
-
-import xyz.driver.common.logging._
-
-case class Label(id: LongId[Label],
- categoryId: LongId[Category],
- name: String,
- description: String)
-
-object Label {
- implicit def toPhiString(x: Label): PhiString = {
- import x._
- phi"Label($id, categoryId=${Unsafe(categoryId)}, name=${Unsafe(name)}, description=${Unsafe(description)})"
- }
-}