mirror of
https://gitlab.com/mobicoop/v3/service/user.git
synced 2026-03-29 07:05:49 +00:00
12 lines
183 B
TypeScript
12 lines
183 B
TypeScript
import { IsInt, IsOptional } from 'class-validator';
|
|
|
|
export class FindAllUsersRequest {
|
|
@IsInt()
|
|
@IsOptional()
|
|
page?: number;
|
|
|
|
@IsInt()
|
|
@IsOptional()
|
|
perPage?: number;
|
|
}
|