from __future__ import annotations

from pydantic import BaseModel


class AuditEvent(BaseModel):
    audit_id: str
    timestamp: str
    entity_type: str
    entity_id: str
    action: str
    summary: str
    created_by: str = ""
