refactor intarface

This commit is contained in:
Eudes Inácio
2024-06-05 11:59:14 +01:00
parent 1e12769b73
commit fde23537c5
@@ -2,7 +2,6 @@ import { Injectable } from '@angular/core';
import { HttpService } from 'src/app/services/http.service'; import { HttpService } from 'src/app/services/http.service';
import { MessageOutPutDTO } from '../../chat/dto/message/messageOutputDTO'; import { MessageOutPutDTO } from '../../chat/dto/message/messageOutputDTO';
import { MessageListInputDTO } from '../../chat/dto/message/messageListInputDTO'; import { MessageListInputDTO } from '../../chat/dto/message/messageListInputDTO';
import { DataSourceReturn } from '../../type';
export interface UserContacts { export interface UserContacts {
@@ -13,7 +12,7 @@ export interface UserContacts {
} }
export interface UserListResult { export interface UserListResult {
total: 192, total: number,
result: UserContacts[] result: UserContacts[]
} }