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

export class SubscriptionToProjectInfo {
  @ApiProperty({})
  id: string;

  @ApiProperty({})
  title: string;
}
