import { Prop } from '@nestjs/mongoose';
import { Types } from 'mongoose';
export class ParametroUser {
@Prop({
type: Types.ObjectId,
required: true,
})
_id: Types.ObjectId;
@Prop({
type: String,
required: true,
maxlength: 50,
})
nombre: string;
}