data-model.js
1.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var AppSettings = /** @class */ (function () {
function AppSettings() {
}
return AppSettings;
}());
exports.AppSettings = AppSettings;
var Menu = /** @class */ (function () {
function Menu() {
}
return Menu;
}());
exports.Menu = Menu;
var MenuItem = /** @class */ (function () {
function MenuItem() {
}
return MenuItem;
}());
exports.MenuItem = MenuItem;
var Footer = /** @class */ (function () {
function Footer() {
}
return Footer;
}());
exports.Footer = Footer;
var FooterColumn = /** @class */ (function () {
function FooterColumn() {
}
return FooterColumn;
}());
exports.FooterColumn = FooterColumn;
var FooterItem = /** @class */ (function () {
function FooterItem() {
}
return FooterItem;
}());
exports.FooterItem = FooterItem;
var BannerItem = /** @class */ (function () {
function BannerItem() {
}
return BannerItem;
}());
exports.BannerItem = BannerItem;
var BannerSettings = /** @class */ (function () {
function BannerSettings() {
}
return BannerSettings;
}());
exports.BannerSettings = BannerSettings;
var ContentItem = /** @class */ (function () {
function ContentItem() {
}
return ContentItem;
}());
exports.ContentItem = ContentItem;
var User = /** @class */ (function () {
function User(appName) {
this.apps = new Array();
this.apps.push(appName);
}
return User;
}());
exports.User = User;
var Address = /** @class */ (function () {
function Address() {
}
return Address;
}());
exports.Address = Address;
var UserProfile = /** @class */ (function () {
function UserProfile() {
}
return UserProfile;
}());
exports.UserProfile = UserProfile;
var AdminUser = /** @class */ (function () {
function AdminUser() {
}
return AdminUser;
}());
exports.AdminUser = AdminUser;
//# sourceMappingURL=data-model.js.map