import { IsNotEmpty } from 'class-validator';

export class IdDto<T = number> {
  @IsNotEmpty()
  id: T;
}
