diff options
Diffstat (limited to 'src/models')
-rw-r--r-- | src/models/customer.rs (renamed from src/models/client.rs) | 8 | ||||
-rw-r--r-- | src/models/mod.rs | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/models/client.rs b/src/models/customer.rs index a76af70..65bd700 100644 --- a/src/models/client.rs +++ b/src/models/customer.rs @@ -56,7 +56,7 @@ impl Contact { } #[derive(Clone, PartialEq)] -pub struct Client { +pub struct Customer { pub id: u64, pub name: String, pub contact: Contact, @@ -65,9 +65,9 @@ pub struct Client { pub shipping_addresses: Vec<Address>, } -impl Client { - pub fn new() -> Client { - Client { +impl Customer { + pub fn new() -> Customer { + Customer { id: 0, name: String::new(), contact: Contact::new(), diff --git a/src/models/mod.rs b/src/models/mod.rs index 514c03d..74c6b60 100644 --- a/src/models/mod.rs +++ b/src/models/mod.rs @@ -15,4 +15,4 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -pub mod client; +pub mod customer; |