15 lines
308 B
Go
Raw Normal View History

2025-02-24 16:48:20 +08:00
package subscribeplandomain
import "github.com/google/uuid"
type SubscribePlanReq struct {
Code string `json:"code" validate:"required"`
2025-02-24 20:18:09 +08:00
Name string `json:"name" validate:"required"`
2025-02-24 16:48:20 +08:00
}
type SubscribePlan struct {
ID uuid.UUID `json:"id"`
Code string `json:"code"`
2025-02-24 20:18:09 +08:00
Name string `json:"name"`
2025-02-24 16:48:20 +08:00
}