13 lines
236 B
Python
13 lines
236 B
Python
from sqlmodel import Field, SQLModel
|
|
|
|
|
|
class Service(SQLModel, table=True):
|
|
id: int | None = Field(default=None, primary_key=True)
|
|
|
|
title: str
|
|
|
|
description: str | None = Field(default=None)
|
|
|
|
priority: int
|
|
|
|
link: str
|