10 lines
161 B
TypeScript
10 lines
161 B
TypeScript
![]() |
import { IsNumberString, IsString } from 'class-validator';
|
||
|
|
||
|
export class UsuarioDgpDto {
|
||
|
@IsString()
|
||
|
rfc: string;
|
||
|
|
||
|
@IsNumberString()
|
||
|
usuario: string;
|
||
|
}
|