You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
padelclub_backend/tournaments/models/__init__.py

23 lines
1.0 KiB

from sync.models import BaseModel, SideStoreModel
from .custom_user import CustomUser
from .club import Club
from .court import Court
from .date_interval import DateInterval
from .enums import UserOrigin, TournamentPayment, FederalCategory, FederalLevelCategory, FederalAgeCategory, FederalMatchCategory, OnlineRegistrationStatus, RegistrationStatus, ModelOperation
from .player_enums import PlayerSexType, PlayerDataSource, PlayerPaymentType
from .event import Event
from .tournament import Tournament, TeamSummon, TeamSortingType, TeamItem
from .group_stage import GroupStage
from .round import Round
from .match import Match, LiveMatch
from .team_registration import TeamRegistration
from .player_registration import PlayerRegistration
from .team_score import TeamScore
from .purchase import Purchase
from .failed_api_call import FailedApiCall
from .log import Log
from .device_token import DeviceToken
from .draw_log import DrawLog
from .unregistered_team import UnregisteredTeam
from .unregistered_player import UnregisteredPlayer