├── 📁 Annotations
│ └── 📄 AllowedExtensionsAttribute.cs
├── 📁 Controllers
│ ├── 📄 AuthController.cs
│ ├── 📄 ChatController.cs
│ ├── 📄 DonationController.cs
│ ├── 📄 FacebookController.cs
│ └── 📄 QueryController.cs
├── 📁 DTOs
│ ├── 📁 AuthDTOs
│ │ ├── 📄 RegisterDTO.cs
│ │ ├── 📄 UpdateDTO.cs
│ │ ├── 📄 UpdatePasswordDTO.cs
│ │ └── 📄 UpdateTokenRequestDTO.cs
│ ├── 📁 ChatDTOs
│ │ ├── 📄 ChatDTO.cs
│ │ └── 📄 MessageDTO.cs
│ ├── 📁 DonationDTOs
│ │ └── 📄 DonationDTO.cs
│ ├── 📁 FacebookDTOs
│ │ └── 📄 FacebookPostDTO.cs
│ ├── 📁 QueryDTOs
│ │ └── 📄 QueryDTO.cs
│ └── 📁 SearchDTOs
│ ├── 📄 FindNearestDTO.cs
│ ├── 📄 FinderSearchDTO.cs
│ ├── 📄 ParentSearchDTO.cs
│ └── 📄 SearchDTO.cs
├── 📁 Data
│ ├── 📁 Configurations
│ │ ├── 📄 ChatConfiguration.cs
│ │ ├── 📄 MessageConfiguration.cs
│ │ ├── 📄 QueryConfiguration.cs
│ │ └── 📄 UserConfiguration.cs
│ └── 📄 ReuniteDbContext.cs
├── 📁 Docker_images
│ ├── 📄 Dockerfile-dotnet
│ └── 📄 Dockerfile-mssql-server
├── 📁 Helpers
│ ├── 📄 AIServiceHelper.cs
│ ├── 📄 CurrencyHelper.cs
│ └── 📄 QueryServiceHelpers.cs
├── 📁 Hubs
│ └── 📄 ChatHub.cs
├── 📁 Migrations
│ ├── 📄 20250625143658_I.Designer.cs
│ ├── 📄 20250625143658_I.cs
│ └── 📄 ReuniteDbContextModelSnapshot.cs
├── 📁 Models
│ ├── 📄 Chat.cs
│ ├── 📄 FacebookPost.cs
│ ├── 📄 Location.cs
│ ├── 📄 Message.cs
│ ├── 📄 Query.cs
│ └── 📄 ReuniteUser.cs
├── 📁 Properties
│ └── ⚙️ launchSettings.json
├── 📁 Repositories
│ ├── 📁 Implementations
│ │ ├── 📄 ChatRepository.cs
│ │ ├── 📄 FacebookRepository.cs
│ │ ├── 📄 MessageRepository.cs
│ │ ├── 📄 QueryRepository.cs
│ │ └── 📄 UserRepository.cs
│ └── 📁 Interfaces
│ ├── 📄 IChatRepository.cs
│ ├── 📄 IFacebookRepository.cs
│ ├── 📄 IMessageRepository.cs
│ ├── 📄 IQueryRepository.cs
│ └── 📄 IUserRepository.cs
├── 📁 Services
│ ├── 📁 Implementations
│ │ ├── 📄 AuthService.cs
│ │ ├── 📄 ChatService.cs
│ │ ├── 📄 DonationService.cs
│ │ ├── 📄 FacebookService.cs
│ │ ├── 📄 FirebaseNotificationService.cs
│ │ ├── 📄 QueryService.cs
│ │ ├── 📄 TokenProviderService.cs
│ │ └── 📄 UserService.cs
│ └── 📁 Interfaces
│ ├── 📄 IAuthService.cs
│ ├── 📄 IChatService.cs
│ ├── 📄 IDonationService.cs
│ ├── 📄 IFacebookService.cs
│ ├── 📄 IFirebaseNotificationService.cs
│ ├── 📄 IQueryService.cs
│ ├── 📄 ITokenProviderService.cs
│ └── 📄 IUserService.cs
├── 📁 Shared
│ └── 📄 Result.cs
├── ⚙️ .gitignore
├── 📄 Program.cs
├── 📝 README.md
├── 📄 Reunite.csproj
├── 📄 Reunite.http
├── 📄 Reunite.sln
├── ⚙️ appsettings.Development.json
└── ⚙️ docker-compose.yml