link-go/link/entity.go
2021-03-13 01:43:08 +06:00

13 lines
154 B
Go

package link
import (
"net/url"
"time"
)
type Link struct {
Id string
Name string
RedirectURL url.URL
CreationTime time.Time
}