Skip to content

Commit

Permalink
Needs some aditional restructuring
Browse files Browse the repository at this point in the history
  • Loading branch information
JakobKlobcic committed Feb 1, 2023
1 parent ded3050 commit 4a579bf
Show file tree
Hide file tree
Showing 3 changed files with 640 additions and 389 deletions.
37 changes: 37 additions & 0 deletions lib/models/office.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@

import 'dart:convert';

class Office {
var name;
var address1;
var address2;
var city;
var state;
var zip;
var username;
var password;
var cleaningPrice;
var email;
var phone;
var contactMethod;
var bankRouting;
var bankAccount;

Office ({
this.name,
this.address1,
this.address2,
this.city,
this.state,
this.zip,
this.username,
this.password,
this.cleaningPrice,
this.email,
this.phone,
this.contactMethod,
this.bankRouting,
this.bankAccount
});
}

Loading

0 comments on commit 4a579bf

Please sign in to comment.