15 lines
150 B
Go
15 lines
150 B
Go
package domain
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type ViewsSnapshot struct {
|
|
ViewsCount int
|
|
FetchedAt time.Time
|
|
|
|
PostID uuid.UUID
|
|
}
|