mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-05-04 12:52:36 +02:00
9 lines
161 B
Python
9 lines
161 B
Python
|
|
|
||
|
|
class Schema:
|
||
|
|
def __init__(self, name, description, fields):
|
||
|
|
self.name = name
|
||
|
|
self.description = description
|
||
|
|
self.fields = fields
|
||
|
|
|
||
|
|
|