mirror of
https://github.com/bitwarden/browser
synced 2025-12-13 23:03:32 +00:00
12 lines
251 B
TypeScript
12 lines
251 B
TypeScript
import { BaseResponse } from './baseResponse';
|
|
|
|
export class ListResponse implements BaseResponse {
|
|
object: string;
|
|
data: BaseResponse[];
|
|
|
|
constructor(data: BaseResponse[]) {
|
|
this.object = 'list';
|
|
this.data = data;
|
|
}
|
|
}
|