Sengi-Windows-MacOS-Linux/src/app/models/account.models.ts

15 lines
220 B
TypeScript
Raw Normal View History

import { AccountInfo } from "../states/accounts.state";
2018-03-16 03:43:41 +01:00
export class AccountWrapper {
constructor() {
}
// id: number;
// username: string;
// display_name: string;
info: AccountInfo;
2018-03-16 03:43:41 +01:00
avatar: string;
}