18 lines
261 B
Go
18 lines
261 B
Go
package asset
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type Artifact struct {
|
|
ID uuid.UUID
|
|
AssetID uuid.UUID
|
|
Type string
|
|
DownloadURL string
|
|
Price int // in cents or smallest currency unit
|
|
Title string
|
|
Description string
|
|
}
|
|
|
|
|