initial commit
This commit is contained in:
17
internal/domain/asset/artifact.go
Normal file
17
internal/domain/asset/artifact.go
Normal file
@@ -0,0 +1,17 @@
|
||||
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
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user