maot-shortner/internal/domain/link.go
2025-08-06 16:04:04 -03:00

12 lines
210 B
Go

package domain
import (
"time"
)
type Link struct {
ID int64 `json:"id"`
ShortURL string `json:"short_url"`
LongURL string `json:"long_url"`
CreatedAt time.Time `json:"created_at"`
}