db-tables.js
1.39 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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var State = /** @class */ (function () {
function State(Id, StateName) {
this.Id = Id;
this.StateName = StateName;
}
return State;
}());
exports.State = State;
var Country = /** @class */ (function () {
function Country(Id, Name) {
this.Id = Id;
this.Name = Name;
}
return Country;
}());
exports.Country = Country;
var AccountType = /** @class */ (function () {
function AccountType(Id, Title) {
this.Id = Id;
this.Title = Title;
}
AccountType.createEmptyAccountType = function () {
return new AccountType(0, "");
};
return AccountType;
}());
exports.AccountType = AccountType;
var SecurityQuestions = /** @class */ (function () {
function SecurityQuestions(Id, Title) {
this.Id = Id;
this.Title = Title;
}
return SecurityQuestions;
}());
exports.SecurityQuestions = SecurityQuestions;
var LicenseType = /** @class */ (function () {
function LicenseType(Id, Title) {
this.Id = Id;
this.Title = Title;
}
return LicenseType;
}());
exports.LicenseType = LicenseType;
var UserType = /** @class */ (function () {
function UserType(Id, Title) {
this.Id = Id;
this.Title = Title;
}
return UserType;
}());
exports.UserType = UserType;
//# sourceMappingURL=db-tables.js.map