14 lines
199 B
Solidity
14 lines
199 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}
|
||
|
|
}
|