mirror of
https://github.com/logos-blockchain/logos-blockchain-block-explorer-template.git
synced 2026-01-02 13:13:10 +00:00
9 lines
242 B
Python
9 lines
242 B
Python
from core.models import NbeSchema
|
|
from models.transactions.operations.contents import NbeContent
|
|
from models.transactions.operations.proofs import OperationProof
|
|
|
|
|
|
class Operation(NbeSchema):
|
|
content: NbeContent
|
|
proof: OperationProof
|