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

13 lines
163 B
Go

package profile
import (
"github.com/google/uuid"
)
type Award struct {
ID uuid.UUID
ProfileID uuid.UUID
Name string
Description string
}