Skip to content

Commit

Permalink
feat: 도메인 enum 속성 클래스 구현 (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
SunwoongH committed Jan 4, 2024
1 parent 0f3c749 commit c05b969
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.doorip.todo.domain;

public enum Progress {
INCOMPLETE, COMPLETE
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.doorip.todo.domain;

public enum Secret {
OUR, MY
}
5 changes: 5 additions & 0 deletions doorip-domain/src/main/java/org/doorip/trip/domain/Role.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.doorip.trip.domain;

public enum Role {
HOST, PARTICIPATION
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package org.doorip.user.domain;

public enum Platform {
KAKAO, APPLE
}

0 comments on commit c05b969

Please sign in to comment.