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

13 lines
199 B
TypeScript
Raw Normal View History

import { Account } from "../services/models/mastodon.interfaces";
2018-03-16 03:43:41 +01:00
export class AccountWrapper {
constructor() {
}
2018-03-16 03:43:41 +01:00
id: number;
username: string;
display_name: string;
avatar: string;
}