17 lines
402 B
TypeScript
17 lines
402 B
TypeScript
import { Column, Entity, PrimaryColumn } from 'typeorm';
|
|
import { ApiProperty } from '@nestjs/swagger';
|
|
import { Allow } from 'class-validator';
|
|
import { EntityHelper } from 'src/utils/entity-helper';
|
|
|
|
@Entity()
|
|
export class TeamRole extends EntityHelper {
|
|
@ApiProperty({ example: 1 })
|
|
@PrimaryColumn()
|
|
id: number;
|
|
|
|
@Allow()
|
|
@ApiProperty({ example: 'player' })
|
|
@Column()
|
|
name?: string;
|
|
}
|