6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
export interface IListUsersResponseDTO {
|
|
id: string;
|
|
username: string;
|
|
email: string;
|
|
}
|