enaklo-flutter/lib/common/url/api_path.dart
2025-09-18 13:01:31 +07:00

14 lines
577 B
Dart

class ApiPath {
static String checkPhone = '/api/v1/customer-auth/check-phone';
static String register = '/api/v1/customer-auth/register/start';
static String verify = '/api/v1/customer-auth/register/verify-otp';
static String setPassword = '/api/v1/customer-auth/register/set-password';
static String login = '/api/v1/customer-auth/login';
static String resend = '/api/v1/customer-auth/resend-otp';
// Marketing
static String gamePrizeByGameId = '/api/v1/marketing/game-prizes/game';
// Customer
static String customerPoint = '/api/v1/customer/points';
}