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

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

	@ApiProperty()
	timestamp: Date;

	@ApiProperty()
	level: string;

	@ApiProperty()
	message: string;

	@ApiProperty()
	meta: string;

	@ApiProperty()
	type: string;

	@ApiProperty()
	typeId: string;
}
