mirror of
https://github.com/Instadapp/fluid-contracts-public.git
synced 2024-07-29 21:57:37 +00:00
12 lines
200 B
Solidity
12 lines
200 B
Solidity
// SPDX-License-Identifier: BUSL-1.1
|
|
pragma solidity 0.8.21;
|
|
|
|
contract Structs {
|
|
struct UserPosition {
|
|
uint nftId;
|
|
address owner;
|
|
uint supply;
|
|
uint borrow;
|
|
}
|
|
}
|