20 lines
338 B
Go
20 lines
338 B
Go
package domain
|
|
|
|
import "time"
|
|
|
|
const (
|
|
AssetPurposeTaskReference = "TASK_REFERENCE"
|
|
NormalizedImageMediaType = "image/jpeg"
|
|
)
|
|
|
|
type Asset struct {
|
|
ID string
|
|
CreatorSubject string
|
|
Purpose string
|
|
MediaType string
|
|
SizeBytes int64
|
|
SHA256 string
|
|
StorageKey string
|
|
CreatedAt time.Time
|
|
}
|