17 lines
224 B
Go
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
|
|
}
|