2024-03-11 13:34:08 -04:00
|
|
|
package model
|
|
|
|
|
|
|
|
type ConvertRequest struct {
|
|
|
|
Subscriptions []string `form:"subscription" json:"subscription"`
|
|
|
|
Proxies []string `form:"proxy" json:"proxy"`
|
|
|
|
Template string `form:"template" json:"template"`
|
|
|
|
Delete string `form:"delete" json:"delete"`
|
|
|
|
Rename map[string]string `form:"rename" json:"rename"`
|
2024-03-19 09:02:53 -04:00
|
|
|
Group bool `form:"group" json:"group"`
|
|
|
|
GroupType string `form:"group-type" json:"group-type"`
|
|
|
|
SortKey string `form:"sort" json:"sort"`
|
|
|
|
SortType string `form:"sort-type" json:"sort-type"`
|
2024-05-23 04:57:19 -04:00
|
|
|
Output string `json:"output"`
|
2024-03-11 13:34:08 -04:00
|
|
|
}
|