import { IsUUID } from 'class-validator';

export class AssociateGroupDto {
  @IsUUID()
  app_user_id: string;

  @IsUUID()
  group_id: string;
}
