1
0
mirror of https://github.com/mgerb/classic-wow-forums synced 2026-01-11 17:42:48 +00:00

client - add services

This commit is contained in:
2018-01-08 22:27:21 -06:00
parent 5ffa2753ed
commit 43615213d8
13 changed files with 93 additions and 35 deletions

View File

@@ -0,0 +1,5 @@
export interface CategoryModel {
id: number;
category: string;
title: string;
}

View File

@@ -0,0 +1,2 @@
export * from './category';
export * from './user';

3
client/app/model/user.ts Normal file
View File

@@ -0,0 +1,3 @@
export interface UserModel {
}