mirror of
https://github.com/sfiorini/iptv-server.git
synced 2026-04-11 12:00:46 +00:00
5 lines
90 B
Python
5 lines
90 B
Python
from pydantic import BaseModel
|
|
|
|
class User(BaseModel):
|
|
username: str
|
|
password: str |