export type Gender = 'Male' | 'Female';

export type Religion = 'Islam' | 'Christian' | 'Catholic' | 'Buddha' | 'Hindu' | 'Konghucu' | 'Others';

export type MarriageStatus = 'Single' | 'Married' | 'Divorced';

export type TransactionStatus = 'Pending' | 'Success' | 'Unverified' | 'Expired' | 'Failed' | 'Rejected';

export type TransactionRelation = 'Event';

export type EventPaymentType = 'Midtrans' | 'Manual';

export type LessonType = 'Video' | 'File' | 'Text';

export type CourseClassPlan = 'Monthly' | 'Yearly';
