1
Fork 0
photoview/api/graphql/models/share_token.go

22 lines
298 B
Go

package models
import "time"
type ShareToken struct {
TokenID int
Value string
OwnerID int
Expire *time.Time
Password *string
AlbumID *int
PhotoID *int
}
func (share *ShareToken) Token() string {
return share.Value
}
func (share *ShareToken) ID() int {
return share.TokenID
}