15 lines
243 B
Solidity
15 lines
243 B
Solidity
|
|
/*
|
||
|
|
|
||
|
|
Copyright 2020 DODO ZOO.
|
||
|
|
SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
*/
|
||
|
|
|
||
|
|
pragma solidity 0.6.9;
|
||
|
|
pragma experimental ABIEncoderV2;
|
||
|
|
|
||
|
|
library Types {
|
||
|
|
enum RStatus {ONE, ABOVE_ONE, BELOW_ONE}
|
||
|
|
enum EnterStatus {ENTERED, NOT_ENTERED}
|
||
|
|
}
|