import { ApiProperty } from '@nestjs/swagger';

export class Imprint {
	@ApiProperty()
	id: number;

	@ApiProperty()
	createdAt: Date;

	@ApiProperty()
	updatedAt: Date;

	@ApiProperty()
	type: string;

	@ApiProperty()
	location: string;

	@ApiProperty()
	designId: number;

	@ApiProperty()
	pricingType: string;

	@ApiProperty()
	images: {
		id: number;
		url: string;
		imprintId: number;
	};

	@ApiProperty()
	height: number;

	@ApiProperty()
	width: number;

	@ApiProperty()
	inks: {
		id: number;
		inkid: number;
		mesh: string;
		imprintId: number;
	};
}
