from django.db import models class GenderChoices(models.TextChoices): MAN = '남', '남성' WOMAN = '여', '여성' class CertificateCodeUseType(models.TextChoices): EMAIL = 'email', 'email' PHONE = 'phone', 'phone' class InviteCodeUseType(models.TextChoices): PROJECT = 'p', 'p' HACKATHON = 'h', 'h' class NotificationType(models.TextChoices): INVITE = '초대', '초대' class InvitationStatus(models.TextChoices): PENDING = '대기', '대기' ACCEPTED = '수락', '수락' REJECTED = '거절', '거절'