Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3단계 - 수강신청(DB 적용) #515

Open
wants to merge 5 commits into
base: movingone
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat : status enum create
movingone committed Apr 16, 2024
commit f720394ab8052f83ba7978a8ebe1a70f90745272
17 changes: 17 additions & 0 deletions src/main/java/nextstep/courses/domain/Status.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package nextstep.courses.domain;

public enum Status {

PREPARE("prepare"),
END("end"),
RECRUIT("recruit");

final String status;
Status(String status) {
this.status = status;
}

public String getStatus() {
return status;
}
}