This commit is contained in:
chashaobao
2025-08-31 22:43:00 +08:00
parent 61686950bd
commit aea8323d95
7 changed files with 122 additions and 49 deletions

10
src/types/coupon.ts Normal file
View File

@ -0,0 +1,10 @@
export type ClaimMembershipCouponResponse = {
code: string;
usageExpireAt: string;
};
export type GenerateMembershipCouponResponse = {
code: string;
linkExpireAt: string;
shareUrl: string;
};