19 lines
239 B
Go
19 lines
239 B
Go
package model
|
|
|
|
type StoreAdminInfoIn struct {
|
|
StoreAdminId int64
|
|
}
|
|
|
|
type StoreAdminInfoOut struct {
|
|
Username string
|
|
}
|
|
|
|
type StoreAdminLoginIn struct {
|
|
Username string
|
|
Password string
|
|
}
|
|
|
|
type StoreAdminLoginOut struct {
|
|
Token string
|
|
}
|