├── .gitignore ├── .mise.toml ├── LICENSE ├── Makefile ├── Projects ├── App │ ├── Project.swift │ ├── iOS-Widget │ │ ├── Resource │ │ │ └── Assets.xcassets │ │ │ │ ├── Contents.json │ │ │ │ └── EmptyColor.colorset │ │ │ │ └── Contents.json │ │ └── Source │ │ │ ├── AppMainWidget.swift │ │ │ ├── Component │ │ │ └── MealMenuText.swift │ │ │ ├── DI │ │ │ ├── Assembly │ │ │ │ ├── DataSourceAssembly.swift │ │ │ │ ├── LocalAssembly.swift │ │ │ │ ├── RemoteAssembly.swift │ │ │ │ └── RepositoryAssembly.swift │ │ │ └── Provider │ │ │ │ └── DependencyProviderExt.swift │ │ │ ├── Entry │ │ │ └── MealEntry.swift │ │ │ ├── Provider │ │ │ └── MealProvider.swift │ │ │ └── Widget │ │ │ └── DodamMealWidget.swift │ └── iOS │ │ ├── Resource │ │ ├── Asset.xcassets │ │ │ ├── AccentColor.colorset │ │ │ │ └── Contents.json │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ └── DodamAppIcon.png │ │ │ ├── ChevronLeft.imageset │ │ │ │ ├── Back.svg │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── Onboard.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Onboard.jpg │ │ │ ├── Parent.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Parent.svg │ │ │ ├── Profile.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Profile.svg │ │ │ ├── Student.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Student.svg │ │ │ └── Trash.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── Trash.svg │ │ ├── DodamDodam.entitlements │ │ ├── GoogleService-Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── Logo │ │ │ ├── B1NDLogo.png │ │ │ └── DodamLogo.png │ │ └── Source │ │ ├── AppDelegate.swift │ │ ├── AppMain.swift │ │ ├── DI │ │ ├── Assembly │ │ │ ├── DataSourceAssembly.swift │ │ │ ├── FlowAssembly.swift │ │ │ ├── LocalAssembly.swift │ │ │ ├── RemoteAssembly.swift │ │ │ └── RepositoryAssembly.swift │ │ └── Provider │ │ │ └── DependencyProviderExt.swift │ │ ├── Extension │ │ └── UINavigationControllerExt.swift │ │ └── NavigationController.swift ├── DIContainer │ ├── Project.swift │ └── Source │ │ ├── DependencyProvider.swift │ │ └── Injection │ │ └── Inject.swift ├── Data │ ├── DataSource │ │ └── Source │ │ │ ├── Auth │ │ │ └── AuthDataSource.swift │ │ │ ├── Banner │ │ │ └── BannerDataSource.swift │ │ │ ├── Bus │ │ │ └── BusDataSource.swift │ │ │ ├── Club │ │ │ └── ClubDataSource.swift │ │ │ ├── DataSourceProtocol.swift │ │ │ ├── Division │ │ │ └── DivisionDataSource.swift │ │ │ ├── Meal │ │ │ ├── Extensions │ │ │ │ └── MealEntityExt.swift │ │ │ ├── LocalMealDataSource.swift │ │ │ └── MealDataSource.swift │ │ │ ├── Member │ │ │ └── MemberDataSource.swift │ │ │ ├── NightStudy │ │ │ └── NightStudyDataSource.swift │ │ │ ├── Notice │ │ │ └── NoticeDataSource.swift │ │ │ ├── OutGoing │ │ │ └── OutGoingDataSource.swift │ │ │ ├── OutSleeping │ │ │ └── OutSleepingDataSource.swift │ │ │ ├── Point │ │ │ └── PointDataSource.swift │ │ │ ├── Schedule │ │ │ └── ScheduleDataSource.swift │ │ │ ├── Upload │ │ │ └── UploadDataSource.swift │ │ │ └── WakeupSong │ │ │ └── WakeupSongDataSource.swift │ ├── Local │ │ └── Source │ │ │ ├── Expired.swift │ │ │ ├── Extensions │ │ │ ├── RealmExt.swift │ │ │ └── ResultsExt.swift │ │ │ └── Meal │ │ │ ├── MealCache.swift │ │ │ ├── MealDetailEntity.swift │ │ │ ├── MealEntity.swift │ │ │ └── MealMenuEntity.swift │ ├── Network │ │ └── Source │ │ │ ├── Provider │ │ │ └── Constants.swift │ │ │ ├── Remote │ │ │ ├── Auth │ │ │ │ └── AuthRemote.swift │ │ │ ├── Banner │ │ │ │ └── BannerRemote.swift │ │ │ ├── Bus │ │ │ │ └── BusRemote.swift │ │ │ ├── Club │ │ │ │ └── ClubRemote.swift │ │ │ ├── Division │ │ │ │ └── DivisionRemote.swift │ │ │ ├── Meal │ │ │ │ └── MealRemote.swift │ │ │ ├── Member │ │ │ │ └── MemberRemote.swift │ │ │ ├── NightStudy │ │ │ │ └── NightStudyRemote.swift │ │ │ ├── Notice │ │ │ │ └── NoticeRemote.swift │ │ │ ├── OutGoing │ │ │ │ └── OutGoingRemote.swift │ │ │ ├── OutSleeping │ │ │ │ └── OutSleepingRemote.swift │ │ │ ├── Point │ │ │ │ └── PointRemote.swift │ │ │ ├── RemoteInterceptor.swift │ │ │ ├── RemoteProtocol.swift │ │ │ ├── Schedule │ │ │ │ └── ScheduleRemote.swift │ │ │ ├── Upload │ │ │ │ └── UploadRemote.swift │ │ │ └── WakeupSong │ │ │ │ └── WakeupSongRemote.swift │ │ │ ├── RequestProtocolExt.swift │ │ │ └── Service │ │ │ ├── Auth │ │ │ └── AuthService.swift │ │ │ ├── Banner │ │ │ └── BannerService.swift │ │ │ ├── Bus │ │ │ └── BusService.swift │ │ │ ├── Club │ │ │ └── ClubService.swift │ │ │ ├── Division │ │ │ └── DivisionService.swift │ │ │ ├── Meal │ │ │ └── MealService.swift │ │ │ ├── Member │ │ │ └── MemberService.swift │ │ │ ├── NightStudy │ │ │ └── NightStudyService.swift │ │ │ ├── Notice │ │ │ └── NoticeService.swift │ │ │ ├── OutGoing │ │ │ └── OutGoingService.swift │ │ │ ├── OutSleeping │ │ │ └── OutSleepingService.swift │ │ │ ├── Point │ │ │ └── PointService.swift │ │ │ ├── Schedule │ │ │ └── ScheduleService.swift │ │ │ ├── ServiceProtocol.swift │ │ │ ├── Upload │ │ │ └── UploadService.swift │ │ │ └── WakeupSong │ │ │ └── WakeupSongService.swift │ ├── Project.swift │ └── Repository │ │ └── Source │ │ ├── Auth │ │ └── AuthRepositoryImpl.swift │ │ ├── Banner │ │ └── BannerRepositoryImpl.swift │ │ ├── Bus │ │ └── BusRepositoryImpl.swift │ │ ├── Club │ │ └── ClubRepositoryImpl.swift │ │ ├── Division │ │ └── DivisionRepositoryImpl.swift │ │ ├── Meal │ │ └── MealRepositoryImpl.swift │ │ ├── Member │ │ └── MemberRepositoryImpl.swift │ │ ├── NightStudy │ │ └── NightStudyRepositoryImpl.swift │ │ ├── Notice │ │ └── NoticeRepositoryImpl.swift │ │ ├── OutGoing │ │ └── OutGoingRepositoryImpl.swift │ │ ├── OutSleeping │ │ └── OutSleepingRepositoryImpl.swift │ │ ├── Point │ │ └── PointRepositoryImpl.swift │ │ ├── Schedule │ │ └── ScheduleRepositoryImpl.swift │ │ ├── Upload │ │ └── UploadRepositoryImpl.swift │ │ └── WakeupSong │ │ └── WakeupSongRepositoryImpl.swift ├── Domain │ ├── Project.swift │ └── Source │ │ ├── Entity │ │ ├── ActiveStatus.swift │ │ ├── AllowStatus.swift │ │ ├── AuthType.swift │ │ ├── ClubPriority.swift │ │ ├── ClubTeacher.swift │ │ ├── ClubType.swift │ │ ├── DivisionPermission.swift │ │ ├── FileType.swift │ │ ├── Grade.swift │ │ ├── MealType.swift │ │ ├── NightProjectPlace.swift │ │ ├── NightStudyPlace.swift │ │ ├── NightStudyProjectType.swift │ │ ├── NightStudyType.swift │ │ ├── NoticeStatus.swift │ │ ├── PermissionType.swift │ │ ├── PointType.swift │ │ ├── Role.swift │ │ ├── SchedulePlace.swift │ │ ├── ScheduleType.swift │ │ ├── ScoreType.swift │ │ └── StateType.swift │ │ ├── Model │ │ ├── Club.swift │ │ ├── ConnectStudent.swift │ │ ├── MealDetail.swift │ │ ├── MealMenu.swift │ │ ├── MealModel.swift │ │ ├── Member.swift │ │ ├── ModelProtocol.swift │ │ ├── PointReason.swift │ │ ├── Student.swift │ │ └── Teacher.swift │ │ ├── Repository │ │ ├── Auth │ │ │ └── AuthRepository.swift │ │ ├── Banner │ │ │ └── BannerRepository.swift │ │ ├── Bus │ │ │ └── BusRepository.swift │ │ ├── Club │ │ │ └── ClubRepository.swift │ │ ├── Division │ │ │ └── DivisionRepository.swift │ │ ├── Meal │ │ │ └── MealRepository.swift │ │ ├── Member │ │ │ └── MemberRepository.swift │ │ ├── NightStudy │ │ │ └── NightStudyRepository.swift │ │ ├── Notice │ │ │ └── NoticeRepository.swift │ │ ├── OutGoing │ │ │ └── OutGoingRepository.swift │ │ ├── OutSleeping │ │ │ └── OutSleepingRepository.swift │ │ ├── Point │ │ │ └── PointRepository.swift │ │ ├── RepositoryProtocol.swift │ │ ├── Schedule │ │ │ └── ScheduleRepository.swift │ │ ├── Upload │ │ │ └── UploadRepository.swift │ │ └── WakeupSong │ │ │ └── WakeupSongRepository.swift │ │ ├── Request │ │ ├── Auth │ │ │ ├── PostLoginRequest.swift │ │ │ └── PostReissueRequest.swift │ │ ├── Club │ │ │ └── ClubApplyRequest.swift │ │ ├── Division │ │ │ ├── AddMembersRequest.swift │ │ │ ├── DeleteDivisionMembersRequest.swift │ │ │ ├── FetchDivisionMembersRequest.swift │ │ │ ├── FetchDivisionRequest.swift │ │ │ ├── PatchMemberPermissionRequest.swift │ │ │ ├── PatchMembersStatusRequest.swift │ │ │ └── PostDivisionRequest.swift │ │ ├── Meal │ │ │ ├── FetchMealRequest.swift │ │ │ └── FetchMonthlyMealRequest.swift │ │ ├── Member │ │ │ ├── ConnectStudentRequest.swift │ │ │ ├── PatchMemberInfoRequest.swift │ │ │ ├── PatchPasswordRequest.swift │ │ │ ├── PatchStudentInfoRequest.swift │ │ │ ├── PostAuthCodeRequest.swift │ │ │ ├── PostJoinParentRequest.swift │ │ │ ├── PostJoinStudentRequest.swift │ │ │ ├── PostRelationRequest.swift │ │ │ └── PostVerifyAuthCodeRequest.swift │ │ ├── NightStudy │ │ │ ├── NightStudyBanRequest.swift │ │ │ ├── PostNightStudyProjectRequest.swift │ │ │ └── PostNightStudyRequest.swift │ │ ├── Notice │ │ │ ├── FetchNoticeByDivisioRequest.swift │ │ │ └── FetchNoticeRequest.swift │ │ ├── OutGoing │ │ │ └── PostOutGoingRequest.swift │ │ ├── OutSleeping │ │ │ └── PostOutSleepingRequest.swift │ │ ├── Point │ │ │ ├── FetchPointRequest.swift │ │ │ └── FetchPointScoreRequest.swift │ │ ├── RequestProtocol.swift │ │ ├── Schedule │ │ │ ├── FetchScheduleBetweenRequest.swift │ │ │ ├── FetchScheduleByDateRequest.swift │ │ │ ├── FetchScheduleByKeywordRequest.swift │ │ │ └── FetchScheduleByPageRequest.swift │ │ └── WakeupSong │ │ │ ├── FetchAllowedWakeupSongRequest.swift │ │ │ ├── FetchWakeupSongByKeywordRequest.swift │ │ │ ├── PostWakeupSongByKeywordRequest.swift │ │ │ └── PostWakeupSongRequest.swift │ │ └── Response │ │ ├── Auth │ │ ├── LoginResponse.swift │ │ └── ReissueResponse.swift │ │ ├── Banner │ │ └── BannerResponse.swift │ │ ├── Bus │ │ └── BusResponse.swift │ │ ├── Club │ │ ├── ClubAllMembersResponse.swift │ │ ├── ClubApplyResponse.swift │ │ ├── ClubDetailResponse.swift │ │ ├── ClubJoinRequestsResponse.swift │ │ ├── ClubMembersResponse.swift │ │ ├── ClubRegisterTimeResponse.swift │ │ ├── ClubsResponse.swift │ │ ├── JoinedClubResponse.swift │ │ ├── MyApplyClubResponse.swift │ │ ├── MyClubResponse.swift │ │ └── VoidResponse.swift │ │ ├── DefaultResponse.swift │ │ ├── Division │ │ ├── DivisionDetailResponse.swift │ │ ├── DivisionMemberResponse.swift │ │ ├── DivisionMembersCountResponse.swift │ │ └── DivisionOverviewResponse.swift │ │ ├── Meal │ │ └── MealResponse.swift │ │ ├── Member │ │ ├── ConnectStudentResponse.swift │ │ └── MemberResponse.swift │ │ ├── NightStudy │ │ ├── NightProjectUsingRoomResponse.swift │ │ ├── NightStudyBanResponse.swift │ │ ├── NightStudyProjectResponse.swift │ │ ├── NightStudyResponse.swift │ │ ├── NightStudyStudentResponse.swift │ │ └── OngoingNightStudyResponse.swift │ │ ├── Notice │ │ ├── NoticeFileResponse.swift │ │ └── NoticeResponse.swift │ │ ├── OutGoing │ │ └── OutGoingResponse.swift │ │ ├── OutSleeping │ │ └── OutSleepingResponse.swift │ │ ├── Point │ │ ├── PointResponse.swift │ │ └── PointScoreResponse.swift │ │ ├── Response.swift │ │ ├── ResponseProtocol.swift │ │ ├── Schedule │ │ └── ScheduleResponse.swift │ │ ├── Upload │ │ └── UploadResponse.swift │ │ └── WakeupSong │ │ ├── WakeupSongChartResponse.swift │ │ ├── WakeupSongResponse.swift │ │ └── WakeupSongSearchResponse.swift ├── Feature │ ├── Project.swift │ └── Source │ │ ├── All │ │ ├── AllView.swift │ │ ├── AllViewModel.swift │ │ ├── Component │ │ │ └── AllCell.swift │ │ ├── Point │ │ │ ├── Component │ │ │ │ └── PointCell.swift │ │ │ ├── PointView.swift │ │ │ └── PointViewModel.swift │ │ └── Setting │ │ │ ├── Component │ │ │ └── SettingCell.swift │ │ │ ├── EditMemberInfo │ │ │ ├── EditMemberInfoView.swift │ │ │ └── EditMemberInfoViewModel.swift │ │ │ ├── SettingView.swift │ │ │ └── SettingViewModel.swift │ │ ├── Auth │ │ ├── Login │ │ │ ├── Component │ │ │ │ └── AgreeCell.swift │ │ │ ├── LoginView.swift │ │ │ └── LoginViewModel.swift │ │ └── Register │ │ │ ├── Auth │ │ │ └── RegisterAuthView.swift │ │ │ ├── Info │ │ │ └── RegisterInfoView.swift │ │ │ ├── RegisterViewModel.swift │ │ │ └── SelectRole │ │ │ └── RegisterSelectRoleView.swift │ │ ├── Bus │ │ └── Apply │ │ │ ├── BusApplyView.swift │ │ │ ├── BusApplyViewModel.swift │ │ │ └── Component │ │ │ └── BusApplyCell.swift │ │ ├── ChildrenManage │ │ ├── ChildrenManageView.swift │ │ └── ChildrenManageViewModel.swift │ │ ├── Club │ │ ├── Apply │ │ │ ├── ClubApplyView.swift │ │ │ └── ClubApplyViewModel.swift │ │ ├── ClubView.swift │ │ ├── ClubViewModel.swift │ │ ├── Detail │ │ │ ├── ClubDetailView.swift │ │ │ ├── ClubDetailViewModel.swift │ │ │ └── Component │ │ │ │ ├── ClubCell.swift │ │ │ │ ├── LeaderCell.swift │ │ │ │ ├── MemberCell.swift │ │ │ │ └── StateTypeTag.swift │ │ └── MyClub │ │ │ ├── Component │ │ │ ├── .swift │ │ │ ├── AffiliationCell.swift │ │ │ ├── CreateClubCell.swift │ │ │ ├── MyApplyCell.swift │ │ │ ├── MyClubViewModel.swift │ │ │ └── SugestCell.swift │ │ │ └── MyClubView.swift │ │ ├── Component │ │ ├── CalendarDateCell.swift │ │ └── PhotoPicker.swift │ │ ├── Core │ │ └── OnAppearProtocol.swift │ │ ├── Division │ │ ├── AddMember │ │ │ ├── AddMemberViewModel.swift │ │ │ ├── Component │ │ │ │ ├── CustomAccordion.swift │ │ │ │ └── MemberListView.swift │ │ │ └── DivisionAddMember.swift │ │ ├── Component │ │ │ └── DivisionCell.swift │ │ ├── CreateDivision │ │ │ ├── CreateDivisionView.swift │ │ │ └── CreateDivisionViewModel.swift │ │ ├── Detail │ │ │ ├── Component │ │ │ │ └── MemberRow.swift │ │ │ ├── DivisionDetailView.swift │ │ │ ├── DivisionDetailViewModel.swift │ │ │ └── MemberDetailSheetView.swift │ │ ├── DivisionView.swift │ │ ├── DivisionViewModel.swift │ │ └── Waiting │ │ │ ├── DivisionWaitingMemberView.swift │ │ │ ├── DivisionWaitingViewModel.swift │ │ │ └── WaitingMemberSheetView.swift │ │ ├── Home │ │ ├── Component │ │ │ ├── BannerContainer.swift │ │ │ ├── MealContainer.swift │ │ │ ├── NightStudyStatusContainer.swift │ │ │ ├── OutStatusContainer.swift │ │ │ ├── ScheduleContainer.swift │ │ │ ├── SupportingContainer.swift │ │ │ └── WakeupSongContainer.swift │ │ ├── HomeView.swift │ │ └── HomeViewModel.swift │ │ ├── Main │ │ └── MainView.swift │ │ ├── Meal │ │ ├── Component │ │ │ └── MealCell.swift │ │ ├── MealView.swift │ │ └── MealViewModel.swift │ │ ├── NightStudy │ │ ├── Component │ │ │ ├── DodamStudentCell.swift │ │ │ ├── NightProjectApplyCell.swift │ │ │ └── NightStudyApplyCell.swift │ │ ├── ManageNightStudy │ │ │ ├── Approve │ │ │ │ ├── ApproveNightStudyView.swift │ │ │ │ ├── ApproveNightStudyViewModel.swift │ │ │ │ └── Component │ │ │ │ │ ├── ApproveNightStudySheetCell.swift │ │ │ │ │ ├── PendingNightStudyStudentCell.swift │ │ │ │ │ └── PendingStudentInfoHeader.swift │ │ │ └── Ban │ │ │ │ ├── Component │ │ │ │ ├── ApproveStudentInfoHeader.swift │ │ │ │ ├── ApprovedNightStudyStudentCell.swift │ │ │ │ └── RejectNightStudySheetCell.swift │ │ │ │ ├── ManageNightStudyView.swift │ │ │ │ └── ManageNightStudyViewModel.swift │ │ ├── NightProjectApply │ │ │ ├── NightProjectApplyView.swift │ │ │ └── NightProjectApplyViewModel.swift │ │ ├── NightStudyApply │ │ │ ├── NightStudyApplyView.swift │ │ │ └── NightStudyApplyViewModel.swift │ │ ├── NightStudyApplyMainView.swift │ │ ├── NightStudyView.swift │ │ └── NightStudyViewModel.swift │ │ ├── Notice │ │ ├── Component │ │ │ ├── NoticeCell.swift │ │ │ ├── NoticeDivisionCell.swift │ │ │ ├── NoticeFile.swift │ │ │ ├── NoticeImage.swift │ │ │ └── NoticeViewHeader.swift │ │ ├── NoticeView.swift │ │ └── NoticeViewModel.swift │ │ ├── Out │ │ ├── Component │ │ │ ├── OutGoingCell.swift │ │ │ └── OutSleepingCell.swift │ │ ├── OutApply │ │ │ ├── OutApplyView.swift │ │ │ └── OutApplyViewModel.swift │ │ ├── OutView.swift │ │ └── OutViewModel.swift │ │ └── WakeupSong │ │ ├── Apply │ │ ├── WakeupSongApplyView.swift │ │ └── WakeupSongApplyViewModel.swift │ │ ├── Component │ │ ├── TomorrowWakeupSongCell.swift │ │ └── WakeupSongCell.swift │ │ ├── WakeupSongView.swift │ │ └── WakeupSongViewModel.swift └── Shared │ ├── Project.swift │ └── Source │ ├── Component │ └── Container.swift │ ├── DDS │ └── ModalProvider.swift │ ├── Flow │ ├── Flow.swift │ └── FlowPresenter.swift │ ├── Foundation │ ├── ComparableExt.swift │ ├── DateExt.swift │ ├── DateFormatterExt.swift │ ├── IdentifiableExt.swift │ ├── StringExt.swift │ └── TaskExt.swift │ ├── SwiftUI │ ├── ButtonExt.swift │ ├── LoadingViewExt.swift │ ├── ScrollOffsetPreferenceKey.swift │ ├── TextFieldExt.swift │ ├── ViewExt.swift │ └── ViewHideKeyboardExt.swift │ └── Util │ ├── AppUtil.swift │ ├── ArrayUtil.swift │ ├── DataUtil.swift │ ├── FormatUtil.swift │ └── PagingUtil.swift ├── README.md ├── Scripts ├── .swiftlint.yml ├── PeripheryRunScript.sh └── SwiftLintRunScript.sh ├── Tuist ├── Package.resolved ├── Package.swift └── ProjectDescriptionHelpers │ └── Scripts.swift └── Workspace.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | tuist = "4.43.2" 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Makefile -------------------------------------------------------------------------------- /Projects/App/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/Project.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resource/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Resource/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Resource/Assets.xcassets/EmptyColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Resource/Assets.xcassets/EmptyColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/AppMainWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/AppMainWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/Component/MealMenuText.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/Component/MealMenuText.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/DI/Assembly/DataSourceAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/DI/Assembly/DataSourceAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/DI/Assembly/LocalAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/DI/Assembly/LocalAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/DI/Assembly/RemoteAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/DI/Assembly/RemoteAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/DI/Assembly/RepositoryAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/DI/Assembly/RepositoryAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/DI/Provider/DependencyProviderExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/DI/Provider/DependencyProviderExt.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/Entry/MealEntry.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/Entry/MealEntry.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/Provider/MealProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/Provider/MealProvider.swift -------------------------------------------------------------------------------- /Projects/App/iOS-Widget/Source/Widget/DodamMealWidget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS-Widget/Source/Widget/DodamMealWidget.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/AppIcon.appiconset/DodamAppIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/AppIcon.appiconset/DodamAppIcon.png -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/ChevronLeft.imageset/Back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/ChevronLeft.imageset/Back.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/ChevronLeft.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/ChevronLeft.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Onboard.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Onboard.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Onboard.imageset/Onboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Onboard.imageset/Onboard.jpg -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Parent.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Parent.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Parent.imageset/Parent.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Parent.imageset/Parent.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Profile.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Profile.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Profile.imageset/Profile.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Profile.imageset/Profile.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Student.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Student.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Student.imageset/Student.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Student.imageset/Student.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Trash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Trash.imageset/Contents.json -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Asset.xcassets/Trash.imageset/Trash.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Asset.xcassets/Trash.imageset/Trash.svg -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/DodamDodam.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/DodamDodam.entitlements -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/GoogleService-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/GoogleService-Info.plist -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Logo/B1NDLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Logo/B1NDLogo.png -------------------------------------------------------------------------------- /Projects/App/iOS/Resource/Logo/DodamLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Resource/Logo/DodamLogo.png -------------------------------------------------------------------------------- /Projects/App/iOS/Source/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/AppDelegate.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/AppMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/AppMain.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/DI/Assembly/DataSourceAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/DI/Assembly/DataSourceAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/DI/Assembly/FlowAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/DI/Assembly/FlowAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/DI/Assembly/LocalAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/DI/Assembly/LocalAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/DI/Assembly/RemoteAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/DI/Assembly/RemoteAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/DI/Assembly/RepositoryAssembly.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/DI/Assembly/RepositoryAssembly.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/DI/Provider/DependencyProviderExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/DI/Provider/DependencyProviderExt.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/Extension/UINavigationControllerExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/Extension/UINavigationControllerExt.swift -------------------------------------------------------------------------------- /Projects/App/iOS/Source/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/App/iOS/Source/NavigationController.swift -------------------------------------------------------------------------------- /Projects/DIContainer/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/DIContainer/Project.swift -------------------------------------------------------------------------------- /Projects/DIContainer/Source/DependencyProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/DIContainer/Source/DependencyProvider.swift -------------------------------------------------------------------------------- /Projects/DIContainer/Source/Injection/Inject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/DIContainer/Source/Injection/Inject.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Auth/AuthDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Auth/AuthDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Banner/BannerDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Banner/BannerDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Bus/BusDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Bus/BusDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Club/ClubDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Club/ClubDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/DataSourceProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/DataSourceProtocol.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Division/DivisionDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Division/DivisionDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Meal/Extensions/MealEntityExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Meal/Extensions/MealEntityExt.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Meal/LocalMealDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Meal/LocalMealDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Meal/MealDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Meal/MealDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Member/MemberDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Member/MemberDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/NightStudy/NightStudyDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/NightStudy/NightStudyDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Notice/NoticeDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Notice/NoticeDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/OutGoing/OutGoingDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/OutGoing/OutGoingDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/OutSleeping/OutSleepingDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/OutSleeping/OutSleepingDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Point/PointDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Point/PointDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Schedule/ScheduleDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Schedule/ScheduleDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/Upload/UploadDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/Upload/UploadDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/DataSource/Source/WakeupSong/WakeupSongDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/DataSource/Source/WakeupSong/WakeupSongDataSource.swift -------------------------------------------------------------------------------- /Projects/Data/Local/Source/Expired.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Local/Source/Expired.swift -------------------------------------------------------------------------------- /Projects/Data/Local/Source/Extensions/RealmExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Local/Source/Extensions/RealmExt.swift -------------------------------------------------------------------------------- /Projects/Data/Local/Source/Extensions/ResultsExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Local/Source/Extensions/ResultsExt.swift -------------------------------------------------------------------------------- /Projects/Data/Local/Source/Meal/MealCache.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Local/Source/Meal/MealCache.swift -------------------------------------------------------------------------------- /Projects/Data/Local/Source/Meal/MealDetailEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Local/Source/Meal/MealDetailEntity.swift -------------------------------------------------------------------------------- /Projects/Data/Local/Source/Meal/MealEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Local/Source/Meal/MealEntity.swift -------------------------------------------------------------------------------- /Projects/Data/Local/Source/Meal/MealMenuEntity.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Local/Source/Meal/MealMenuEntity.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Provider/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Provider/Constants.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Auth/AuthRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Auth/AuthRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Banner/BannerRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Banner/BannerRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Bus/BusRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Bus/BusRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Club/ClubRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Club/ClubRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Division/DivisionRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Division/DivisionRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Meal/MealRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Meal/MealRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Member/MemberRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Member/MemberRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/NightStudy/NightStudyRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/NightStudy/NightStudyRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Notice/NoticeRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Notice/NoticeRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/OutGoing/OutGoingRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/OutGoing/OutGoingRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/OutSleeping/OutSleepingRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/OutSleeping/OutSleepingRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Point/PointRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Point/PointRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/RemoteInterceptor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/RemoteInterceptor.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/RemoteProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/RemoteProtocol.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Schedule/ScheduleRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Schedule/ScheduleRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/Upload/UploadRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/Upload/UploadRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Remote/WakeupSong/WakeupSongRemote.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Remote/WakeupSong/WakeupSongRemote.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/RequestProtocolExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/RequestProtocolExt.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Auth/AuthService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Auth/AuthService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Banner/BannerService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Banner/BannerService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Bus/BusService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Bus/BusService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Club/ClubService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Club/ClubService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Division/DivisionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Division/DivisionService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Meal/MealService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Meal/MealService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Member/MemberService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Member/MemberService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/NightStudy/NightStudyService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/NightStudy/NightStudyService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Notice/NoticeService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Notice/NoticeService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/OutGoing/OutGoingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/OutGoing/OutGoingService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/OutSleeping/OutSleepingService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/OutSleeping/OutSleepingService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Point/PointService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Point/PointService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Schedule/ScheduleService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Schedule/ScheduleService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/ServiceProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/ServiceProtocol.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/Upload/UploadService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/Upload/UploadService.swift -------------------------------------------------------------------------------- /Projects/Data/Network/Source/Service/WakeupSong/WakeupSongService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Network/Source/Service/WakeupSong/WakeupSongService.swift -------------------------------------------------------------------------------- /Projects/Data/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Project.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Auth/AuthRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Auth/AuthRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Banner/BannerRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Banner/BannerRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Bus/BusRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Bus/BusRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Club/ClubRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Club/ClubRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Division/DivisionRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Division/DivisionRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Meal/MealRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Meal/MealRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Member/MemberRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Member/MemberRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/NightStudy/NightStudyRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/NightStudy/NightStudyRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Notice/NoticeRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Notice/NoticeRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/OutGoing/OutGoingRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/OutGoing/OutGoingRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/OutSleeping/OutSleepingRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/OutSleeping/OutSleepingRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Point/PointRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Point/PointRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Schedule/ScheduleRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Schedule/ScheduleRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/Upload/UploadRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/Upload/UploadRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Data/Repository/Source/WakeupSong/WakeupSongRepositoryImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Data/Repository/Source/WakeupSong/WakeupSongRepositoryImpl.swift -------------------------------------------------------------------------------- /Projects/Domain/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Project.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/ActiveStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/ActiveStatus.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/AllowStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/AllowStatus.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/AuthType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/AuthType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/ClubPriority.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/ClubPriority.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/ClubTeacher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/ClubTeacher.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/ClubType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/ClubType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/DivisionPermission.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/DivisionPermission.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/FileType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/FileType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/Grade.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/Grade.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/MealType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/MealType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/NightProjectPlace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/NightProjectPlace.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/NightStudyPlace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/NightStudyPlace.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/NightStudyProjectType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/NightStudyProjectType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/NightStudyType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/NightStudyType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/NoticeStatus.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/NoticeStatus.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/PermissionType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/PermissionType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/PointType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/PointType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/Role.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/Role.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/SchedulePlace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/SchedulePlace.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/ScheduleType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/ScheduleType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/ScoreType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/ScoreType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Entity/StateType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Entity/StateType.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/Club.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/Club.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/ConnectStudent.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/ConnectStudent.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/MealDetail.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/MealDetail.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/MealMenu.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/MealMenu.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/MealModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/MealModel.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/Member.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/Member.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/ModelProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/ModelProtocol.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/PointReason.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/PointReason.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/Student.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/Student.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Model/Teacher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Model/Teacher.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Auth/AuthRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Auth/AuthRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Banner/BannerRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Banner/BannerRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Bus/BusRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Bus/BusRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Club/ClubRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Club/ClubRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Division/DivisionRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Division/DivisionRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Meal/MealRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Meal/MealRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Member/MemberRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Member/MemberRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/NightStudy/NightStudyRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/NightStudy/NightStudyRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Notice/NoticeRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Notice/NoticeRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/OutGoing/OutGoingRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/OutGoing/OutGoingRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/OutSleeping/OutSleepingRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/OutSleeping/OutSleepingRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Point/PointRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Point/PointRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/RepositoryProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/RepositoryProtocol.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Schedule/ScheduleRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Schedule/ScheduleRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/Upload/UploadRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/Upload/UploadRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Repository/WakeupSong/WakeupSongRepository.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Repository/WakeupSong/WakeupSongRepository.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Auth/PostLoginRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Auth/PostLoginRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Auth/PostReissueRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Auth/PostReissueRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Club/ClubApplyRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Club/ClubApplyRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Division/AddMembersRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Division/AddMembersRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Division/DeleteDivisionMembersRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Division/DeleteDivisionMembersRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Division/FetchDivisionMembersRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Division/FetchDivisionMembersRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Division/FetchDivisionRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Division/FetchDivisionRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Division/PatchMemberPermissionRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Division/PatchMemberPermissionRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Division/PatchMembersStatusRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Division/PatchMembersStatusRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Division/PostDivisionRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Division/PostDivisionRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Meal/FetchMealRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Meal/FetchMealRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Meal/FetchMonthlyMealRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Meal/FetchMonthlyMealRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/ConnectStudentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/ConnectStudentRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PatchMemberInfoRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PatchMemberInfoRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PatchPasswordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PatchPasswordRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PatchStudentInfoRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PatchStudentInfoRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PostAuthCodeRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PostAuthCodeRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PostJoinParentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PostJoinParentRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PostJoinStudentRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PostJoinStudentRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PostRelationRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PostRelationRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Member/PostVerifyAuthCodeRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Member/PostVerifyAuthCodeRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/NightStudy/NightStudyBanRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/NightStudy/NightStudyBanRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/NightStudy/PostNightStudyProjectRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/NightStudy/PostNightStudyProjectRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/NightStudy/PostNightStudyRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/NightStudy/PostNightStudyRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Notice/FetchNoticeByDivisioRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Notice/FetchNoticeByDivisioRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Notice/FetchNoticeRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Notice/FetchNoticeRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/OutGoing/PostOutGoingRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/OutGoing/PostOutGoingRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/OutSleeping/PostOutSleepingRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/OutSleeping/PostOutSleepingRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Point/FetchPointRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Point/FetchPointRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Point/FetchPointScoreRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Point/FetchPointScoreRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/RequestProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/RequestProtocol.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Schedule/FetchScheduleBetweenRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Schedule/FetchScheduleBetweenRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Schedule/FetchScheduleByDateRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Schedule/FetchScheduleByDateRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Schedule/FetchScheduleByKeywordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Schedule/FetchScheduleByKeywordRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/Schedule/FetchScheduleByPageRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/Schedule/FetchScheduleByPageRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/WakeupSong/FetchAllowedWakeupSongRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/WakeupSong/FetchAllowedWakeupSongRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/WakeupSong/FetchWakeupSongByKeywordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/WakeupSong/FetchWakeupSongByKeywordRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/WakeupSong/PostWakeupSongByKeywordRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/WakeupSong/PostWakeupSongByKeywordRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Request/WakeupSong/PostWakeupSongRequest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Request/WakeupSong/PostWakeupSongRequest.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Auth/LoginResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Auth/LoginResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Auth/ReissueResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Auth/ReissueResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Banner/BannerResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Banner/BannerResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Bus/BusResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Bus/BusResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/ClubAllMembersResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/ClubAllMembersResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/ClubApplyResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/ClubApplyResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/ClubDetailResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/ClubDetailResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/ClubJoinRequestsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/ClubJoinRequestsResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/ClubMembersResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/ClubMembersResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/ClubRegisterTimeResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/ClubRegisterTimeResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/ClubsResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/ClubsResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/JoinedClubResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/JoinedClubResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/MyApplyClubResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/MyApplyClubResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/MyClubResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/MyClubResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Club/VoidResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Club/VoidResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/DefaultResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/DefaultResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Division/DivisionDetailResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Division/DivisionDetailResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Division/DivisionMemberResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Division/DivisionMemberResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Division/DivisionMembersCountResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Division/DivisionMembersCountResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Division/DivisionOverviewResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Division/DivisionOverviewResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Meal/MealResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Meal/MealResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Member/ConnectStudentResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Member/ConnectStudentResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Member/MemberResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Member/MemberResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/NightStudy/NightProjectUsingRoomResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/NightStudy/NightProjectUsingRoomResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/NightStudy/NightStudyBanResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/NightStudy/NightStudyBanResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/NightStudy/NightStudyProjectResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/NightStudy/NightStudyProjectResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/NightStudy/NightStudyResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/NightStudy/NightStudyResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/NightStudy/NightStudyStudentResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/NightStudy/NightStudyStudentResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/NightStudy/OngoingNightStudyResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/NightStudy/OngoingNightStudyResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Notice/NoticeFileResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Notice/NoticeFileResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Notice/NoticeResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Notice/NoticeResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/OutGoing/OutGoingResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/OutGoing/OutGoingResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/OutSleeping/OutSleepingResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/OutSleeping/OutSleepingResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Point/PointResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Point/PointResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Point/PointScoreResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Point/PointScoreResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Response.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Response.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/ResponseProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/ResponseProtocol.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Schedule/ScheduleResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Schedule/ScheduleResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/Upload/UploadResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/Upload/UploadResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/WakeupSong/WakeupSongChartResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/WakeupSong/WakeupSongChartResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/WakeupSong/WakeupSongResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/WakeupSong/WakeupSongResponse.swift -------------------------------------------------------------------------------- /Projects/Domain/Source/Response/WakeupSong/WakeupSongSearchResponse.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Domain/Source/Response/WakeupSong/WakeupSongSearchResponse.swift -------------------------------------------------------------------------------- /Projects/Feature/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Project.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/AllView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/AllView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/AllViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/AllViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Component/AllCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Component/AllCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Point/Component/PointCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Point/Component/PointCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Point/PointView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Point/PointView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Point/PointViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Point/PointViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Setting/Component/SettingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Setting/Component/SettingCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Setting/EditMemberInfo/EditMemberInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Setting/EditMemberInfo/EditMemberInfoView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Setting/EditMemberInfo/EditMemberInfoViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Setting/EditMemberInfo/EditMemberInfoViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Setting/SettingView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Setting/SettingView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/All/Setting/SettingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/All/Setting/SettingViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Auth/Login/Component/AgreeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Auth/Login/Component/AgreeCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Auth/Login/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Auth/Login/LoginView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Auth/Login/LoginViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Auth/Login/LoginViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Auth/Register/Auth/RegisterAuthView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Auth/Register/Auth/RegisterAuthView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Auth/Register/Info/RegisterInfoView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Auth/Register/Info/RegisterInfoView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Auth/Register/RegisterViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Auth/Register/RegisterViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Auth/Register/SelectRole/RegisterSelectRoleView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Auth/Register/SelectRole/RegisterSelectRoleView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Bus/Apply/BusApplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Bus/Apply/BusApplyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Bus/Apply/BusApplyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Bus/Apply/BusApplyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Bus/Apply/Component/BusApplyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Bus/Apply/Component/BusApplyCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/ChildrenManage/ChildrenManageView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/ChildrenManage/ChildrenManageView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/ChildrenManage/ChildrenManageViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/ChildrenManage/ChildrenManageViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Apply/ClubApplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Apply/ClubApplyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Apply/ClubApplyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Apply/ClubApplyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/ClubView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/ClubView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/ClubViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/ClubViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Detail/ClubDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Detail/ClubDetailView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Detail/ClubDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Detail/ClubDetailViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Detail/Component/ClubCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Detail/Component/ClubCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Detail/Component/LeaderCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Detail/Component/LeaderCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Detail/Component/MemberCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Detail/Component/MemberCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/Detail/Component/StateTypeTag.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/Detail/Component/StateTypeTag.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/MyClub/Component/.swift: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/MyClub/Component/AffiliationCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/MyClub/Component/AffiliationCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/MyClub/Component/CreateClubCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/MyClub/Component/CreateClubCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/MyClub/Component/MyApplyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/MyClub/Component/MyApplyCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/MyClub/Component/MyClubViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/MyClub/Component/MyClubViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/MyClub/Component/SugestCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/MyClub/Component/SugestCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Club/MyClub/MyClubView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Club/MyClub/MyClubView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Component/CalendarDateCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Component/CalendarDateCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Component/PhotoPicker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Component/PhotoPicker.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Core/OnAppearProtocol.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Core/OnAppearProtocol.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/AddMember/AddMemberViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/AddMember/AddMemberViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/AddMember/Component/CustomAccordion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/AddMember/Component/CustomAccordion.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/AddMember/Component/MemberListView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/AddMember/Component/MemberListView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/AddMember/DivisionAddMember.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/AddMember/DivisionAddMember.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Component/DivisionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Component/DivisionCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/CreateDivision/CreateDivisionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/CreateDivision/CreateDivisionView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/CreateDivision/CreateDivisionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/CreateDivision/CreateDivisionViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Detail/Component/MemberRow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Detail/Component/MemberRow.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Detail/DivisionDetailView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Detail/DivisionDetailView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Detail/DivisionDetailViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Detail/DivisionDetailViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Detail/MemberDetailSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Detail/MemberDetailSheetView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/DivisionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/DivisionView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/DivisionViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/DivisionViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Waiting/DivisionWaitingMemberView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Waiting/DivisionWaitingMemberView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Waiting/DivisionWaitingViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Waiting/DivisionWaitingViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Division/Waiting/WaitingMemberSheetView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Division/Waiting/WaitingMemberSheetView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/Component/BannerContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/Component/BannerContainer.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/Component/MealContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/Component/MealContainer.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/Component/NightStudyStatusContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/Component/NightStudyStatusContainer.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/Component/OutStatusContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/Component/OutStatusContainer.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/Component/ScheduleContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/Component/ScheduleContainer.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/Component/SupportingContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/Component/SupportingContainer.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/Component/WakeupSongContainer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/Component/WakeupSongContainer.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/HomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/HomeView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Home/HomeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Home/HomeViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Main/MainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Main/MainView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Meal/Component/MealCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Meal/Component/MealCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Meal/MealView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Meal/MealView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Meal/MealViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Meal/MealViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/Component/DodamStudentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/Component/DodamStudentCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/Component/NightProjectApplyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/Component/NightProjectApplyCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/Component/NightStudyApplyCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/Component/NightStudyApplyCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/ApproveNightStudyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/ApproveNightStudyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/ApproveNightStudyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/ApproveNightStudyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/Component/ApproveNightStudySheetCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/Component/ApproveNightStudySheetCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/Component/PendingNightStudyStudentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/Component/PendingNightStudyStudentCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/Component/PendingStudentInfoHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Approve/Component/PendingStudentInfoHeader.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/Component/ApproveStudentInfoHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/Component/ApproveStudentInfoHeader.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/Component/ApprovedNightStudyStudentCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/Component/ApprovedNightStudyStudentCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/Component/RejectNightStudySheetCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/Component/RejectNightStudySheetCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/ManageNightStudyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/ManageNightStudyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/ManageNightStudyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/ManageNightStudy/Ban/ManageNightStudyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/NightProjectApply/NightProjectApplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/NightProjectApply/NightProjectApplyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/NightProjectApply/NightProjectApplyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/NightProjectApply/NightProjectApplyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/NightStudyApply/NightStudyApplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/NightStudyApply/NightStudyApplyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/NightStudyApply/NightStudyApplyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/NightStudyApply/NightStudyApplyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/NightStudyApplyMainView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/NightStudyApplyMainView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/NightStudyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/NightStudyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/NightStudy/NightStudyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/NightStudy/NightStudyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Notice/Component/NoticeCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Notice/Component/NoticeCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Notice/Component/NoticeDivisionCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Notice/Component/NoticeDivisionCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Notice/Component/NoticeFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Notice/Component/NoticeFile.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Notice/Component/NoticeImage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Notice/Component/NoticeImage.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Notice/Component/NoticeViewHeader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Notice/Component/NoticeViewHeader.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Notice/NoticeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Notice/NoticeView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Notice/NoticeViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Notice/NoticeViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Out/Component/OutGoingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Out/Component/OutGoingCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Out/Component/OutSleepingCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Out/Component/OutSleepingCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Out/OutApply/OutApplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Out/OutApply/OutApplyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Out/OutApply/OutApplyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Out/OutApply/OutApplyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Out/OutView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Out/OutView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/Out/OutViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/Out/OutViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/WakeupSong/Apply/WakeupSongApplyView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/WakeupSong/Apply/WakeupSongApplyView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/WakeupSong/Apply/WakeupSongApplyViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/WakeupSong/Apply/WakeupSongApplyViewModel.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/WakeupSong/Component/TomorrowWakeupSongCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/WakeupSong/Component/TomorrowWakeupSongCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/WakeupSong/Component/WakeupSongCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/WakeupSong/Component/WakeupSongCell.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/WakeupSong/WakeupSongView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/WakeupSong/WakeupSongView.swift -------------------------------------------------------------------------------- /Projects/Feature/Source/WakeupSong/WakeupSongViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Feature/Source/WakeupSong/WakeupSongViewModel.swift -------------------------------------------------------------------------------- /Projects/Shared/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Project.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Component/Container.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Component/Container.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/DDS/ModalProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/DDS/ModalProvider.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Flow/Flow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Flow/Flow.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Flow/FlowPresenter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Flow/FlowPresenter.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Foundation/ComparableExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Foundation/ComparableExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Foundation/DateExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Foundation/DateExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Foundation/DateFormatterExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Foundation/DateFormatterExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Foundation/IdentifiableExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Foundation/IdentifiableExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Foundation/StringExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Foundation/StringExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Foundation/TaskExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Foundation/TaskExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/SwiftUI/ButtonExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/SwiftUI/ButtonExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/SwiftUI/LoadingViewExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/SwiftUI/LoadingViewExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/SwiftUI/ScrollOffsetPreferenceKey.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/SwiftUI/ScrollOffsetPreferenceKey.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/SwiftUI/TextFieldExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/SwiftUI/TextFieldExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/SwiftUI/ViewExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/SwiftUI/ViewExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/SwiftUI/ViewHideKeyboardExt.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/SwiftUI/ViewHideKeyboardExt.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Util/AppUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Util/AppUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Util/ArrayUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Util/ArrayUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Util/DataUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Util/DataUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Util/FormatUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Util/FormatUtil.swift -------------------------------------------------------------------------------- /Projects/Shared/Source/Util/PagingUtil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Projects/Shared/Source/Util/PagingUtil.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Scripts/.swiftlint.yml -------------------------------------------------------------------------------- /Scripts/PeripheryRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Scripts/PeripheryRunScript.sh -------------------------------------------------------------------------------- /Scripts/SwiftLintRunScript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Scripts/SwiftLintRunScript.sh -------------------------------------------------------------------------------- /Tuist/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Tuist/Package.resolved -------------------------------------------------------------------------------- /Tuist/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Tuist/Package.swift -------------------------------------------------------------------------------- /Tuist/ProjectDescriptionHelpers/Scripts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Tuist/ProjectDescriptionHelpers/Scripts.swift -------------------------------------------------------------------------------- /Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-B1ND/dodamdodam-ios/HEAD/Workspace.swift --------------------------------------------------------------------------------