export class UsuarioRedSocialViewModel { id: string; token: string; idSocial: number; fechaRegistro: Date; constructor(id: string, token: string, idSocial: number, fechaRegistro: Date) { this.id = id; this.token = token; this.idSocial = idSocial; this.fechaRegistro = fechaRegistro; } }