Skip to content

Contracts Models

kconte18 edited this page Mar 13, 2023 · 5 revisions

interface ArtWork

{
id: string,
artist: string,
type: ArtType,
mainPicture: string,
pictures: string[]
}

enum ArtType

{
Print = "PRINT",
Painting = "PAINTING",
Other = "OTHER"
}

Clone this wiki locally