feat(subscription): add Language parameter to GetSubscription request and update query logic

This commit is contained in:
Chang lue Tsen
2025-09-04 03:14:31 -04:00
parent f632ea2c89
commit 10757612f5
5 changed files with 32 additions and 7 deletions
+4
View File
@@ -965,6 +965,10 @@ type GetSubscribeLogResponse struct {
Total int64 `json:"total"`
}
type GetSubscriptionRequest struct {
Language string `form:"language"`
}
type GetSubscriptionResponse struct {
List []Subscribe `json:"list"`
}