15 lines
308 B
Go
15 lines
308 B
Go
package subscribeplandomain
|
|
|
|
import "github.com/google/uuid"
|
|
|
|
type SubscribePlanReq struct {
|
|
Code string `json:"code" validate:"required"`
|
|
Name string `json:"name" validate:"required"`
|
|
}
|
|
|
|
type SubscribePlan struct {
|
|
ID uuid.UUID `json:"id"`
|
|
Code string `json:"code"`
|
|
Name string `json:"name"`
|
|
}
|