1234567891011121314151617181920212223242526 |
- var Unibase;
- (function (Unibase) {
- let Platform;
- (function (Platform) {
- let Membership;
- (function (Membership) {
- let Requests;
- (function (Requests) {
- class Signup {
- constructor() {
- this.FirstName = "";
- this.LastName = "";
- this.ContactNumber = "";
- this.Email = "";
- this.ContactNumberConfirmed = false;
- this.EmailConfirmed = false;
- this.IndustryId = 0;
- this.IndustryTenantId = 0;
- this.IndustryName = "";
- }
- }
- Requests.Signup = Signup;
- })(Requests = Membership.Requests || (Membership.Requests = {}));
- })(Membership = Platform.Membership || (Platform.Membership = {}));
- })(Platform = Unibase.Platform || (Unibase.Platform = {}));
- })(Unibase || (Unibase = {}));
|