Changeset 877c13c
- Timestamp:
- 03/19/26 20:42:56 (4 months ago)
- Branches:
- main
- Children:
- e294f7d
- Files:
-
- 479 added
-
.gitignore (added)
-
ChapterX.API/ChapterX.API.csproj (added)
-
ChapterX.API/ChapterX.API.http (added)
-
ChapterX.API/Controllers/AISuggestionsController.cs (added)
-
ChapterX.API/Controllers/AdminsController.cs (added)
-
ChapterX.API/Controllers/ChaptersController.cs (added)
-
ChapterX.API/Controllers/CollaborationsController.cs (added)
-
ChapterX.API/Controllers/CommentsController.cs (added)
-
ChapterX.API/Controllers/ContentTypesController.cs (added)
-
ChapterX.API/Controllers/GenresController.cs (added)
-
ChapterX.API/Controllers/HasGenresController.cs (added)
-
ChapterX.API/Controllers/LikesController.cs (added)
-
ChapterX.API/Controllers/NeedApprovalsController.cs (added)
-
ChapterX.API/Controllers/NotificationsController.cs (added)
-
ChapterX.API/Controllers/NotifyController.cs (added)
-
ChapterX.API/Controllers/PermissionLevelsController.cs (added)
-
ChapterX.API/Controllers/ReadingListItemsController.cs (added)
-
ChapterX.API/Controllers/ReadingListsController.cs (added)
-
ChapterX.API/Controllers/RegularUsersController.cs (added)
-
ChapterX.API/Controllers/RolesController.cs (added)
-
ChapterX.API/Controllers/StatusController.cs (added)
-
ChapterX.API/Controllers/StoriesController.cs (added)
-
ChapterX.API/Controllers/UsersController.cs (added)
-
ChapterX.API/Controllers/WeatherForecastController.cs (added)
-
ChapterX.API/Controllers/WritersController.cs (added)
-
ChapterX.API/DTOs/AISuggestionDto.cs (added)
-
ChapterX.API/DTOs/AdminDto.cs (added)
-
ChapterX.API/DTOs/ChapterDto.cs (added)
-
ChapterX.API/DTOs/CollaborationDto.cs (added)
-
ChapterX.API/DTOs/CommentDto.cs (added)
-
ChapterX.API/DTOs/ContentTypeDto.cs (added)
-
ChapterX.API/DTOs/GenreDto.cs (added)
-
ChapterX.API/DTOs/HasGenreDto.cs (added)
-
ChapterX.API/DTOs/LikesDto.cs (added)
-
ChapterX.API/DTOs/NeedApprovalDto.cs (added)
-
ChapterX.API/DTOs/NotificationDto.cs (added)
-
ChapterX.API/DTOs/NotifyDto.cs (added)
-
ChapterX.API/DTOs/PermissionLevelDto.cs (added)
-
ChapterX.API/DTOs/ReadingListDto.cs (added)
-
ChapterX.API/DTOs/ReadingListItemsDto.cs (added)
-
ChapterX.API/DTOs/RegularUserDto.cs (added)
-
ChapterX.API/DTOs/RolesDto.cs (added)
-
ChapterX.API/DTOs/StatusDto.cs (added)
-
ChapterX.API/DTOs/StoryDto.cs (added)
-
ChapterX.API/DTOs/SuggestionTypeDto.cs (added)
-
ChapterX.API/DTOs/UserDto.cs (added)
-
ChapterX.API/DTOs/WriterDto.cs (added)
-
ChapterX.API/DependencyInjection.cs (added)
-
ChapterX.API/Program.cs (added)
-
ChapterX.API/Properties/launchSettings.json (added)
-
ChapterX.API/WeatherForecast.cs (added)
-
ChapterX.API/appsettings.json (added)
-
ChapterX.Application/AISuggestion/Commands/AddHandler.cs (added)
-
ChapterX.Application/AISuggestion/Commands/AddRequest.cs (added)
-
ChapterX.Application/AISuggestion/Commands/AddResponse.cs (added)
-
ChapterX.Application/AISuggestion/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/AISuggestion/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/AISuggestion/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/AISuggestion/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/AISuggestion/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/AISuggestion/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/AISuggestion/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/AISuggestion/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/AISuggestion/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/AISuggestion/Queries/GetHandler.cs (added)
-
ChapterX.Application/AISuggestion/Queries/GetRequest.cs (added)
-
ChapterX.Application/AISuggestion/Queries/GetResponse.cs (added)
-
ChapterX.Application/Abstractions/IApplicationDbContext.cs (added)
-
ChapterX.Application/Admin/Commands/AddHandler.cs (added)
-
ChapterX.Application/Admin/Commands/AddRequest.cs (added)
-
ChapterX.Application/Admin/Commands/AddResponse.cs (added)
-
ChapterX.Application/Admin/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Admin/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Admin/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Admin/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Admin/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Admin/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Admin/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Admin/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Admin/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Admin/Queries/GetHandler.cs (added)
-
ChapterX.Application/Admin/Queries/GetRequest.cs (added)
-
ChapterX.Application/Admin/Queries/GetResponse.cs (added)
-
ChapterX.Application/Chapter/Commands/AddHandler.cs (added)
-
ChapterX.Application/Chapter/Commands/AddRequest.cs (added)
-
ChapterX.Application/Chapter/Commands/AddResponse.cs (added)
-
ChapterX.Application/Chapter/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Chapter/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Chapter/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Chapter/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Chapter/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Chapter/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Chapter/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Chapter/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Chapter/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Chapter/Queries/GetHandler.cs (added)
-
ChapterX.Application/Chapter/Queries/GetRequest.cs (added)
-
ChapterX.Application/Chapter/Queries/GetResponse.cs (added)
-
ChapterX.Application/ChapterX.Application.csproj (added)
-
ChapterX.Application/Class1.cs (added)
-
ChapterX.Application/Collaboration/Commands/AddHandler.cs (added)
-
ChapterX.Application/Collaboration/Commands/AddRequest.cs (added)
-
ChapterX.Application/Collaboration/Commands/AddResponse.cs (added)
-
ChapterX.Application/Collaboration/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Collaboration/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Collaboration/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Collaboration/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Collaboration/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Collaboration/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Collaboration/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Collaboration/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Collaboration/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Collaboration/Queries/GetHandler.cs (added)
-
ChapterX.Application/Collaboration/Queries/GetRequest.cs (added)
-
ChapterX.Application/Collaboration/Queries/GetResponse.cs (added)
-
ChapterX.Application/Comment/Commands/AddHandler.cs (added)
-
ChapterX.Application/Comment/Commands/AddRequest.cs (added)
-
ChapterX.Application/Comment/Commands/AddResponse.cs (added)
-
ChapterX.Application/Comment/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Comment/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Comment/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Comment/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Comment/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Comment/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Comment/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Comment/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Comment/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Comment/Queries/GetHandler.cs (added)
-
ChapterX.Application/Comment/Queries/GetRequest.cs (added)
-
ChapterX.Application/Comment/Queries/GetResponse.cs (added)
-
ChapterX.Application/ContentType/Commands/AddHandler.cs (added)
-
ChapterX.Application/ContentType/Commands/AddRequest.cs (added)
-
ChapterX.Application/ContentType/Commands/AddResponse.cs (added)
-
ChapterX.Application/ContentType/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/ContentType/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/ContentType/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/ContentType/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/ContentType/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/ContentType/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/ContentType/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/ContentType/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/ContentType/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/ContentType/Queries/GetHandler.cs (added)
-
ChapterX.Application/ContentType/Queries/GetRequest.cs (added)
-
ChapterX.Application/ContentType/Queries/GetResponse.cs (added)
-
ChapterX.Application/DependencyInjection.cs (added)
-
ChapterX.Application/Genre/Commands/AddHandler.cs (added)
-
ChapterX.Application/Genre/Commands/AddRequest.cs (added)
-
ChapterX.Application/Genre/Commands/AddResponse.cs (added)
-
ChapterX.Application/Genre/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Genre/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Genre/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Genre/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Genre/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Genre/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Genre/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Genre/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Genre/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Genre/Queries/GetHandler.cs (added)
-
ChapterX.Application/Genre/Queries/GetRequest.cs (added)
-
ChapterX.Application/Genre/Queries/GetResponse.cs (added)
-
ChapterX.Application/HasGenre/Commands/AddHandler.cs (added)
-
ChapterX.Application/HasGenre/Commands/AddRequest.cs (added)
-
ChapterX.Application/HasGenre/Commands/AddResponse.cs (added)
-
ChapterX.Application/HasGenre/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/HasGenre/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/HasGenre/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/HasGenre/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/HasGenre/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/HasGenre/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/HasGenre/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/HasGenre/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/HasGenre/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/HasGenre/Queries/GetHandler.cs (added)
-
ChapterX.Application/HasGenre/Queries/GetRequest.cs (added)
-
ChapterX.Application/HasGenre/Queries/GetResponse.cs (added)
-
ChapterX.Application/Likes/Commands/AddHandler.cs (added)
-
ChapterX.Application/Likes/Commands/AddRequest.cs (added)
-
ChapterX.Application/Likes/Commands/AddResponse.cs (added)
-
ChapterX.Application/Likes/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Likes/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Likes/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Likes/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Likes/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Likes/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Likes/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Likes/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Likes/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Likes/Queries/GetHandler.cs (added)
-
ChapterX.Application/Likes/Queries/GetRequest.cs (added)
-
ChapterX.Application/Likes/Queries/GetResponse.cs (added)
-
ChapterX.Application/NeedApproval/Commands/AddHandler.cs (added)
-
ChapterX.Application/NeedApproval/Commands/AddRequest.cs (added)
-
ChapterX.Application/NeedApproval/Commands/AddResponse.cs (added)
-
ChapterX.Application/NeedApproval/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/NeedApproval/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/NeedApproval/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/NeedApproval/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/NeedApproval/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/NeedApproval/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/NeedApproval/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/NeedApproval/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/NeedApproval/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/NeedApproval/Queries/GetHandler.cs (added)
-
ChapterX.Application/NeedApproval/Queries/GetRequest.cs (added)
-
ChapterX.Application/NeedApproval/Queries/GetResponse.cs (added)
-
ChapterX.Application/Notification/Commands/AddHandler.cs (added)
-
ChapterX.Application/Notification/Commands/AddRequest.cs (added)
-
ChapterX.Application/Notification/Commands/AddResponse.cs (added)
-
ChapterX.Application/Notification/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Notification/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Notification/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Notification/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Notification/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Notification/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Notification/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Notification/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Notification/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Notification/Queries/GetHandler.cs (added)
-
ChapterX.Application/Notification/Queries/GetRequest.cs (added)
-
ChapterX.Application/Notification/Queries/GetResponse.cs (added)
-
ChapterX.Application/Notify/Commands/AddHandler.cs (added)
-
ChapterX.Application/Notify/Commands/AddRequest.cs (added)
-
ChapterX.Application/Notify/Commands/AddResponse.cs (added)
-
ChapterX.Application/Notify/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Notify/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Notify/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Notify/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Notify/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Notify/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Notify/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Notify/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Notify/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Notify/Queries/GetHandler.cs (added)
-
ChapterX.Application/Notify/Queries/GetRequest.cs (added)
-
ChapterX.Application/Notify/Queries/GetResponse.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/AddHandler.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/AddRequest.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/AddResponse.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/PermissionLevel/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/PermissionLevel/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/PermissionLevel/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/PermissionLevel/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/PermissionLevel/Queries/GetHandler.cs (added)
-
ChapterX.Application/PermissionLevel/Queries/GetRequest.cs (added)
-
ChapterX.Application/PermissionLevel/Queries/GetResponse.cs (added)
-
ChapterX.Application/ReadingList/Commands/AddHandler.cs (added)
-
ChapterX.Application/ReadingList/Commands/AddRequest.cs (added)
-
ChapterX.Application/ReadingList/Commands/AddResponse.cs (added)
-
ChapterX.Application/ReadingList/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/ReadingList/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/ReadingList/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/ReadingList/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/ReadingList/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/ReadingList/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/ReadingList/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/ReadingList/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/ReadingList/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/ReadingList/Queries/GetHandler.cs (added)
-
ChapterX.Application/ReadingList/Queries/GetRequest.cs (added)
-
ChapterX.Application/ReadingList/Queries/GetResponse.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/AddHandler.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/AddRequest.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/AddResponse.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/ReadingListItems/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/ReadingListItems/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/ReadingListItems/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/ReadingListItems/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/ReadingListItems/Queries/GetHandler.cs (added)
-
ChapterX.Application/ReadingListItems/Queries/GetRequest.cs (added)
-
ChapterX.Application/ReadingListItems/Queries/GetResponse.cs (added)
-
ChapterX.Application/RegularUser/Commands/AddHandler.cs (added)
-
ChapterX.Application/RegularUser/Commands/AddRequest.cs (added)
-
ChapterX.Application/RegularUser/Commands/AddResponse.cs (added)
-
ChapterX.Application/RegularUser/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/RegularUser/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/RegularUser/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/RegularUser/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/RegularUser/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/RegularUser/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/RegularUser/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/RegularUser/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/RegularUser/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/RegularUser/Queries/GetHandler.cs (added)
-
ChapterX.Application/RegularUser/Queries/GetRequest.cs (added)
-
ChapterX.Application/RegularUser/Queries/GetResponse.cs (added)
-
ChapterX.Application/Roles/Commands/AddHandler.cs (added)
-
ChapterX.Application/Roles/Commands/AddRequest.cs (added)
-
ChapterX.Application/Roles/Commands/AddResponse.cs (added)
-
ChapterX.Application/Roles/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Roles/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Roles/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Roles/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Roles/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Roles/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Roles/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Roles/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Roles/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Roles/Queries/GetHandler.cs (added)
-
ChapterX.Application/Roles/Queries/GetRequest.cs (added)
-
ChapterX.Application/Roles/Queries/GetResponse.cs (added)
-
ChapterX.Application/Status/Commands/AddHandler.cs (added)
-
ChapterX.Application/Status/Commands/AddRequest.cs (added)
-
ChapterX.Application/Status/Commands/AddResponse.cs (added)
-
ChapterX.Application/Status/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Status/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Status/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Status/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Status/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Status/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Status/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Status/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Status/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Status/Queries/GetHandler.cs (added)
-
ChapterX.Application/Status/Queries/GetRequest.cs (added)
-
ChapterX.Application/Status/Queries/GetResponse.cs (added)
-
ChapterX.Application/Story/Commands/AddHandler.cs (added)
-
ChapterX.Application/Story/Commands/AddRequest.cs (added)
-
ChapterX.Application/Story/Commands/AddResponse.cs (added)
-
ChapterX.Application/Story/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Story/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Story/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Story/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Story/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Story/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Story/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Story/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Story/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Story/Queries/GetHandler.cs (added)
-
ChapterX.Application/Story/Queries/GetRequest.cs (added)
-
ChapterX.Application/Story/Queries/GetResponse.cs (added)
-
ChapterX.Application/User/Commands/AddHandler.cs (added)
-
ChapterX.Application/User/Commands/AddRequest.cs (added)
-
ChapterX.Application/User/Commands/AddResponse.cs (added)
-
ChapterX.Application/User/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/User/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/User/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/User/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/User/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/User/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/User/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/User/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/User/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/User/Queries/GetHandler.cs (added)
-
ChapterX.Application/User/Queries/GetRequest.cs (added)
-
ChapterX.Application/User/Queries/GetResponse.cs (added)
-
ChapterX.Application/Writer/Commands/AddHandler.cs (added)
-
ChapterX.Application/Writer/Commands/AddRequest.cs (added)
-
ChapterX.Application/Writer/Commands/AddResponse.cs (added)
-
ChapterX.Application/Writer/Commands/DeleteHandler.cs (added)
-
ChapterX.Application/Writer/Commands/DeleteRequest.cs (added)
-
ChapterX.Application/Writer/Commands/DeleteResponse.cs (added)
-
ChapterX.Application/Writer/Commands/UpdateHandler.cs (added)
-
ChapterX.Application/Writer/Commands/UpdateRequest.cs (added)
-
ChapterX.Application/Writer/Commands/UpdateResponse.cs (added)
-
ChapterX.Application/Writer/Queries/GetAllHandler.cs (added)
-
ChapterX.Application/Writer/Queries/GetAllRequest.cs (added)
-
ChapterX.Application/Writer/Queries/GetAllResponse.cs (added)
-
ChapterX.Application/Writer/Queries/GetHandler.cs (added)
-
ChapterX.Application/Writer/Queries/GetRequest.cs (added)
-
ChapterX.Application/Writer/Queries/GetResponse.cs (added)
-
ChapterX.Domain/ChapterX.Domain.csproj (added)
-
ChapterX.Domain/Class1.cs (added)
-
ChapterX.Domain/DTOs/AISuggestionDto.cs (added)
-
ChapterX.Domain/DTOs/AdminDto.cs (added)
-
ChapterX.Domain/DTOs/ChapterDto.cs (added)
-
ChapterX.Domain/DTOs/CollaborationDto.cs (added)
-
ChapterX.Domain/DTOs/CommentDto.cs (added)
-
ChapterX.Domain/DTOs/ContentTypeDto.cs (added)
-
ChapterX.Domain/DTOs/GenreDto.cs (added)
-
ChapterX.Domain/DTOs/HasGenreDto.cs (added)
-
ChapterX.Domain/DTOs/LikesDto.cs (added)
-
ChapterX.Domain/DTOs/Metadata.cs (added)
-
ChapterX.Domain/DTOs/NeedApprovalDto.cs (added)
-
ChapterX.Domain/DTOs/NotificationDto.cs (added)
-
ChapterX.Domain/DTOs/NotifyDto.cs (added)
-
ChapterX.Domain/DTOs/PermissionLevelDto.cs (added)
-
ChapterX.Domain/DTOs/ReadingListDto.cs (added)
-
ChapterX.Domain/DTOs/ReadingListItemsDto.cs (added)
-
ChapterX.Domain/DTOs/RegularUserDto.cs (added)
-
ChapterX.Domain/DTOs/RolesDto.cs (added)
-
ChapterX.Domain/DTOs/StatusDto.cs (added)
-
ChapterX.Domain/DTOs/StoryDto.cs (added)
-
ChapterX.Domain/DTOs/SuggestionTypeDto.cs (added)
-
ChapterX.Domain/DTOs/UserDto.cs (added)
-
ChapterX.Domain/DTOs/WriterDto.cs (added)
-
ChapterX.Domain/Entities/AISuggestion.cs (added)
-
ChapterX.Domain/Entities/Admin.cs (added)
-
ChapterX.Domain/Entities/Chapter.cs (added)
-
ChapterX.Domain/Entities/Collaboration.cs (added)
-
ChapterX.Domain/Entities/Comment.cs (added)
-
ChapterX.Domain/Entities/ContentType.cs (added)
-
ChapterX.Domain/Entities/Genre.cs (added)
-
ChapterX.Domain/Entities/HasGenre.cs (added)
-
ChapterX.Domain/Entities/Likes.cs (added)
-
ChapterX.Domain/Entities/NeedApproval.cs (added)
-
ChapterX.Domain/Entities/Notification.cs (added)
-
ChapterX.Domain/Entities/Notify.cs (added)
-
ChapterX.Domain/Entities/PermissionLevel.cs (added)
-
ChapterX.Domain/Entities/ReadingList.cs (added)
-
ChapterX.Domain/Entities/ReadingListItems.cs (added)
-
ChapterX.Domain/Entities/RegularUser.cs (added)
-
ChapterX.Domain/Entities/Roles.cs (added)
-
ChapterX.Domain/Entities/Status.cs (added)
-
ChapterX.Domain/Entities/Story.cs (added)
-
ChapterX.Domain/Entities/SuggestionType.cs (added)
-
ChapterX.Domain/Entities/User.cs (added)
-
ChapterX.Domain/Entities/Writer.cs (added)
-
ChapterX.Domain/Repositories/IAISuggestionRepository.cs (added)
-
ChapterX.Domain/Repositories/IAdminRepository.cs (added)
-
ChapterX.Domain/Repositories/IChapterRepository.cs (added)
-
ChapterX.Domain/Repositories/ICollaborationRepository.cs (added)
-
ChapterX.Domain/Repositories/ICommentRepository.cs (added)
-
ChapterX.Domain/Repositories/IContentTypeRepository.cs (added)
-
ChapterX.Domain/Repositories/IGenreRepository.cs (added)
-
ChapterX.Domain/Repositories/IHasGenreRepository.cs (added)
-
ChapterX.Domain/Repositories/ILikesRepository.cs (added)
-
ChapterX.Domain/Repositories/INeedApprovalRepository.cs (added)
-
ChapterX.Domain/Repositories/INotificationRepository.cs (added)
-
ChapterX.Domain/Repositories/INotifyRepository.cs (added)
-
ChapterX.Domain/Repositories/IPermissionLevelRepository.cs (added)
-
ChapterX.Domain/Repositories/IReadingListItemsRepository.cs (added)
-
ChapterX.Domain/Repositories/IReadingListRepository.cs (added)
-
ChapterX.Domain/Repositories/IRegularUserRepository.cs (added)
-
ChapterX.Domain/Repositories/IRepository.cs (added)
-
ChapterX.Domain/Repositories/IRolesRepository.cs (added)
-
ChapterX.Domain/Repositories/IStatusRepository.cs (added)
-
ChapterX.Domain/Repositories/IStoryRepository.cs (added)
-
ChapterX.Domain/Repositories/ISuggestionTypeRepository.cs (added)
-
ChapterX.Domain/Repositories/IUserRepository.cs (added)
-
ChapterX.Domain/Repositories/IWriterRepository.cs (added)
-
ChapterX.Domain/Shared/IEntity.cs (added)
-
ChapterX.Domain/Shared/PasswordHasher.cs (added)
-
ChapterX.Infrastructure/ChapterX.Infrastructure.csproj (added)
-
ChapterX.Infrastructure/Class1.cs (added)
-
ChapterX.Infrastructure/Data/DataContext/ApplicationDbContext.cs (added)
-
ChapterX.Infrastructure/Data/DataContext/Schemas.cs (added)
-
ChapterX.Infrastructure/DependencyInjection.cs (added)
-
ChapterX.Infrastructure/Migrations/20260319165332_InitialCreate.Designer.cs (added)
-
ChapterX.Infrastructure/Migrations/20260319165332_InitialCreate.cs (added)
-
ChapterX.Infrastructure/Migrations/20260319165534_InitialCreate1.Designer.cs (added)
-
ChapterX.Infrastructure/Migrations/20260319165534_InitialCreate1.cs (added)
-
ChapterX.Infrastructure/Migrations/ApplicationDbContextModelSnapshot.cs (added)
-
ChapterX.Infrastructure/Repositories/AISuggestionRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/AdminRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/ChapterRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/CollaborationRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/CommentRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/ContentTypeRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/GenericRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/GenreRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/HasGenreRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/LikesRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/NeedApprovalRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/NotificationRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/NotifyRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/PermissionLevelRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/ReadingListItemsRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/ReadingListRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/RegularUserRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/RolesRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/StatusRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/StoryRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/SuggestionTypeRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/UserRepository.cs (added)
-
ChapterX.Infrastructure/Repositories/WriterRepository.cs (added)
-
ChapterX.slnx (added)
-
IRepository.cd (added)
-
IRepository.cs (added)
Note:
See TracChangeset
for help on using the changeset viewer.
