from pydantic import BaseModel

class CommunicationSettings(BaseModel):
    sms_enabled: bool                        # Enable SMS Notifications
    show_otp: bool                           # Enable OTP Display
    email_enabled: bool                      # Enable Email Notifications
    skip_customer_email: bool               # Skip Emails to Customers
    skip_workforce_email: bool              # Skip Emails to Workforce
