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

export class InvitationInfo {
  @ApiProperty({})
  projectId: string;

  @ApiProperty({})
  projectTitle: string;

  @ApiProperty({})
  email: string;

  @ApiProperty({})
  code: string;
}
