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

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

	@ApiProperty()
	createdAt: Date;

	@ApiProperty()
	updatedAt: Date;

	@ApiProperty()
	name: string;

	@ApiProperty()
	color: string;

    @ApiProperty()
	storageCode: string;

    @ApiProperty()
	active: boolean;

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