AnP/Go/Interfaces/RequestModelInterface.go

7 lines
136 B
Go

package Interfaces
type RequestModelInterface interface {
ToJSON(header string) string
ToJSONItem(header string) map[string]string
}