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

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

	@ApiProperty()
	createdAt: Date;

	@ApiProperty()
	updatedAt: Date;

	@ApiProperty()
	name: string;

	@ApiProperty()
	description: string;

	@ApiProperty()
	amount: number;

	@ApiProperty()
	modifier: string;

	@ApiProperty()
	taxable: boolean;

	@ApiProperty()
	type: string;
}
