from pydantic import BaseModel
from typing import Optional

class AppLinks(BaseModel):
    android_workforce: str
    android_customer: str
    ios_customer: str
    ios_workforce: str
    social_redirect_facebook: Optional[str] = None
    social_redirect_twitter: Optional[str] = None
    social_redirect_instagram: Optional[str] = None
