Files

20 lines
338 B
Go
Raw Permalink Normal View History

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
}