Files
base/internal/domain/profileold/achievement.go
2026-04-10 18:25:21 +03:30

17 lines
224 B
Go

package profile
import (
"time"
"github.com/google/uuid"
)
type Achievement struct {
ID uuid.UUID
ProfileID uuid.UUID
Name string
Description string
CreatedAt time.Time
UpdatedAt time.Time
}