package identity

type AuthLoginRequestDTO struct {
	Username string `json:"username"`
	Password string `json:"password"`
}

type AuthLoginResponseDTO struct {
	Token string `json:"jwt_token"`
}