"""This module contains the data class for SIC code."""

from pydantic import BaseModel, Field


class SICCode(BaseModel):
    """Data class for SIC code"""

    code: str = Field(description="The SIC code of the company")
    Industry: str = Field(description="The Industry of the SIC code")
    Sector: str = Field(description="The sector of the SIC code")
