from datetime import datetime

from src.apps.base.schemas.common import BaseSchema


class CDNSchema(BaseSchema):
    id: int
    label: str
    host: str
    root_path: str
    is_active: bool
    created_at: datetime
