Created
April 24, 2021 00:41
-
-
Save ahmetozlu/b2bacddc879b0b8fe0214a294cd81025 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// mapping for orders to have an list for the orders | |
mapping (uint => Order) orders; | |
// mapping for invoices to have an list for the invoices | |
mapping (uint => Invoice) invoices; | |
// index value of the orders | |
uint orderseq; | |
// index value of the invoices | |
uint invoiceseq; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment