link-go/link/entity.go
2021-04-03 22:25:11 +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