Skip to content
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.

Commit

Permalink
feat: define UpdateBestAlbumInput dto
Browse files Browse the repository at this point in the history
  • Loading branch information
YanceyOfficial committed Dec 27, 2019
1 parent 0473681 commit 5567992
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/best-albums/dtos/update-best-album.dto.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { InputType, Field } from 'type-graphql'
import { IsNotEmpty, IsUUID } from 'class-validator'
import { CreateBestAlbumInput } from './create-best-album.dto'

@InputType()
export class UpdateBestAlbumInput extends CreateBestAlbumInput {
@Field()
@IsUUID()
@IsNotEmpty()
public readonly id: string
}

0 comments on commit 5567992

Please sign in to comment.