10 lines
230 B
Go
10 lines
230 B
Go
package srequest
|
|
|
|
import "github.com/tech/sendico/pkg/model"
|
|
|
|
type Login struct {
|
|
model.SessionIdentifier `json:",inline"`
|
|
model.LoginData `json:"login"`
|
|
ClientSecret string `json:"clientSecret,omitempty"`
|
|
}
|