tripnomics_7.5.5/pkg/models/shorturl.go
venbatechnologies@gmail.com 91fce5c4bf Initial commit
2021-07-05 13:49:40 +05:30

27 lines
344 B
Go

package models
import (
"errors"
"time"
)
var (
ErrShortURLNotFound = errors.New("short URL not found")
)
type ShortUrl struct {
Id int64
OrgId int64
Uid string
Path string
CreatedBy int64
CreatedAt int64
LastSeenAt int64
}
type DeleteShortUrlCommand struct {
OlderThan time.Time
NumDeleted int64
}