You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
namespace nba.content
enum LeagueIds
nba = "00"
summerLeague = "15"
end enum
enum GameUpdaterMode
date = "date"
game = "game"
end enum
end namespace
namespace nba.content.tasks
enum GamesUpdaterTaskCommand
updateGamesOnDay = "updateGamesOnDay"
updateGamesWithId = "updateGamesWithId"
end enum
end namespace
would be nicer as
namespace nba.content
enum LeagueIds
nba = "00"
summerLeague = "15"
end enum
enum GameUpdaterMode
date = "date"
game = "game"
end enum
namespace tasks
enum GamesUpdaterTaskCommand
updateGamesOnDay = "updateGamesOnDay"
updateGamesWithId = "updateGamesWithId"
end enum
end namespace
end namespace
The text was updated successfully, but these errors were encountered:
will be especially handy for enums..
so..
would be nicer as
The text was updated successfully, but these errors were encountered: