From fe879f680fc2c9946241e2780803632b238f5e49 Mon Sep 17 00:00:00 2001 From: Mihye <92644651+mmihye@users.noreply.github.com> Date: Thu, 23 May 2024 03:14:27 +0900 Subject: [PATCH] =?UTF-8?q?Revert=20"Revert=20"[#1]=20Feat=20:=20=EB=8F=84?= =?UTF-8?q?=EC=BB=A4=20=EB=8D=B0=EC=8A=A4=ED=8A=B8=EB=A5=BC=20=EC=9C=84?= =?UTF-8?q?=ED=95=9C=20socialType=20=EC=B6=94=EA=B0=80""?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/Journey/Together/domain/SocialType.java | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/main/java/Journey/Together/domain/SocialType.java diff --git a/src/main/java/Journey/Together/domain/SocialType.java b/src/main/java/Journey/Together/domain/SocialType.java new file mode 100644 index 0000000..e4268b0 --- /dev/null +++ b/src/main/java/Journey/Together/domain/SocialType.java @@ -0,0 +1,11 @@ +package Journey.Together.domain; + +import lombok.AllArgsConstructor; +import lombok.Getter; + +@Getter +@AllArgsConstructor +public enum SocialType { + KAKAO, + NAVER; +}