Skip to content

Commit

Permalink
[FIX] IntervieweePart 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
unanchoi committed Jan 13, 2024
1 parent 5e342d5 commit 3169ae1
Showing 1 changed file with 12 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
package com.startlion.startlionserver.domain.enums;

import lombok.Getter;
import lombok.RequiredArgsConstructor;

@Getter
@RequiredArgsConstructor
public enum IntervieweePart {
PM,
FE,
BE,
DESIGN,
DEV;
PM("PM"),
FE("FE"),
BE("BE"),
DESIGN("DESIGN"),
DEV("DEV");

private final String name;
}

0 comments on commit 3169ae1

Please sign in to comment.