link-go/pkg/cgnolink/link/entity.go
2021-04-12 17:17:09 +06:00

16 lines
197 B
Go

package link
import (
"net/url"
"time"
)
type Link struct {
Id string
Name string
RedirectURL url.URL
Password string
CreationTime time.Time
}
type Links = []*Link