"""
Merchant Models Package

This module imports all merchant related models to ensure they are
registered with SQLAlchemy for proper migration generation.
"""

from .merchant import Merchant
from .merchant_acceptances import MerchantAcceptances
from .merchant_contacts import MerchantContacts
from .merchant_discount import MerchantDiscount
from .merchant_location import MerchantLocations
from .merchant_payment_history import MerchantPaymentHistory
from .merchant_payment_methods import MerchantPaymentMethod
from .merchant_settings import MerchantSettings
from .merchant_transactions import MerchantTransactions
from .merchant_users import MerchantUsers

__all__ = [
    "Merchant",
    "MerchantAcceptances",
    "MerchantContacts", 
    "MerchantDiscount",
    "MerchantLocations",
    "MerchantPaymentHistory",
    "MerchantPaymentMethod",
    "MerchantSettings",
    "MerchantTransactions",
    "MerchantUsers",
]