db-tables.js 1.39 KB
"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