├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── NovelNest.Core ├── Constants │ └── AdminConstants.cs ├── Contracts │ ├── IAdminService.cs │ ├── IArticleModel.cs │ ├── IArticleService.cs │ ├── IBookModel.cs │ ├── IBookService.cs │ ├── IBookStoreModel.cs │ ├── IBookStoreService.cs │ ├── IEventModel.cs │ ├── IEventService.cs │ ├── IPublisherService.cs │ └── IUserService.cs ├── Enums │ ├── ArticleCommentSorting.cs │ ├── ArticleSorting.cs │ ├── BookReviewSorting.cs │ ├── BookSorting.cs │ ├── BookStoreStatus.cs │ ├── EventSorting.cs │ ├── EventStatus.cs │ └── UserRoleStatus.cs ├── Extensions │ ├── ArticleExtensions.cs │ ├── BookExtensions.cs │ ├── BookStoreExtensions.cs │ ├── EventExtensions.cs │ └── IQueryableBookExtension.cs ├── Models │ ├── QueryModels │ │ ├── Admin │ │ │ ├── AllUsersQueryModel.cs │ │ │ ├── UserQueryServiceModel.cs │ │ │ └── UserServiceModel.cs │ │ ├── Article │ │ │ ├── AllArticleCommentsQueryModel.cs │ │ │ ├── AllArticlesQueryModel.cs │ │ │ ├── ArticleCommentQueryServiceModel.cs │ │ │ ├── ArticleCommentServiceModel.cs │ │ │ ├── ArticleQueryServiceModel.cs │ │ │ └── ArticleServiceModel.cs │ │ ├── Book │ │ │ ├── AllBookCollectionsModel.cs │ │ │ ├── AllBookReviewsQueryModel.cs │ │ │ ├── AllBooksQueryModel.cs │ │ │ ├── BookQueryServiceModel.cs │ │ │ ├── BookReviewQueryServiceModel.cs │ │ │ ├── BookReviewServiceModel.cs │ │ │ └── BookServiceModel.cs │ │ ├── BookStore │ │ │ ├── AllBookStoresQueryModel.cs │ │ │ ├── BookStoreQueryServiceModel.cs │ │ │ └── BookStoreServiceModel.cs │ │ └── Event │ │ │ ├── AllEventsQueryModel.cs │ │ │ ├── EventQueryServiceModel.cs │ │ │ └── EventServiceModel.cs │ └── ViewModels │ │ ├── Admin │ │ ├── UserRemoveViewModel.cs │ │ └── UserViewModel.cs │ │ ├── Article │ │ ├── ArticleAddViewModel.cs │ │ ├── ArticleCommentAddViewModel.cs │ │ ├── ArticleCommentDeleteViewModel.cs │ │ ├── ArticleCommentEditViewModel.cs │ │ ├── ArticleDeleteViewModel.cs │ │ ├── ArticleEditViewModel.cs │ │ └── ArticleViewModel.cs │ │ ├── Book │ │ ├── BookAddViewModel.cs │ │ ├── BookDeleteViewModel.cs │ │ ├── BookEditViewModel.cs │ │ ├── BookReviewAddViewModel.cs │ │ ├── BookReviewDeleteViewModel.cs │ │ ├── BookReviewDetailsViewModel.cs │ │ ├── BookReviewEditViewModel.cs │ │ ├── BookReviewQuestionViewModel.cs │ │ ├── BookViewModel.cs │ │ ├── ChangePageViewModel.cs │ │ ├── CoverTypeViewModel.cs │ │ └── GenreViewModel.cs │ │ ├── BookStore │ │ ├── BookBookStoreDeleteViewModel.cs │ │ ├── BookStoreAddViewModel.cs │ │ ├── BookStoreDeleteViewModel.cs │ │ ├── BookStoreDetailsViewModel.cs │ │ ├── BookStoreEditViewModel.cs │ │ └── BookStoreIndexViewModel.cs │ │ └── Event │ │ ├── EventAddViewModel.cs │ │ ├── EventAllViewModel.cs │ │ ├── EventDeleteViewModel.cs │ │ ├── EventDetailsViewModel.cs │ │ └── EventEditViewModel.cs ├── NovelNest.Core.csproj └── Services │ ├── AdminService.cs │ ├── ArticleService.cs │ ├── BookService.cs │ ├── BookStoreService.cs │ ├── EventService.cs │ ├── PublisherService.cs │ └── UserService.cs ├── NovelNest.Infrastructure ├── Common │ ├── IRepository.cs │ └── Repository.cs ├── Data │ ├── Constants │ │ ├── CustomClaims.cs │ │ └── DataConstants.cs │ ├── DataSeeding │ │ ├── Configurations │ │ │ ├── ArticleCommentConfiguration.cs │ │ │ ├── ArticleConfiguration.cs │ │ │ ├── BookConfiguration.cs │ │ │ ├── BookReviewConfiguration.cs │ │ │ ├── BookStoreConfiguration.cs │ │ │ ├── CoverTypeConfiguration.cs │ │ │ ├── EventConfiguration.cs │ │ │ ├── GenreConfiguration.cs │ │ │ ├── PublisherConfiguration.cs │ │ │ ├── UserClaimsConfiguration.cs │ │ │ └── UserConfiguration.cs │ │ └── DataSeed.cs │ ├── Models │ │ ├── Articles │ │ │ ├── Article.cs │ │ │ └── ArticleComment.cs │ │ ├── BookStores │ │ │ └── BookStore.cs │ │ ├── BookUserActions │ │ │ ├── BookUserCurrentlyReading.cs │ │ │ ├── BookUserRead.cs │ │ │ └── BookUserWantToRead.cs │ │ ├── Books │ │ │ ├── Book.cs │ │ │ ├── BookReview.cs │ │ │ ├── CoverType.cs │ │ │ └── Genre.cs │ │ ├── Carts │ │ │ └── Cart.cs │ │ ├── Events │ │ │ └── Event.cs │ │ ├── Mappings │ │ │ ├── BookBookStore.cs │ │ │ ├── BookCart.cs │ │ │ ├── EventCart.cs │ │ │ └── EventParticipant.cs │ │ └── Roles │ │ │ ├── ApplicationUser.cs │ │ │ └── Publisher.cs │ └── NovelNestDbContext.cs ├── Migrations │ ├── 20240224112842_IdentityInitialMigration.Designer.cs │ ├── 20240224112842_IdentityInitialMigration.cs │ ├── 20240224135644_NovelNestEntities_InitialMigration.Designer.cs │ ├── 20240224135644_NovelNestEntities_InitialMigration.cs │ ├── 20240224152016_BookYearPublishedTypeChanged.Designer.cs │ ├── 20240224152016_BookYearPublishedTypeChanged.cs │ ├── 20240224152838_ChangedBookDescriptionLength.Designer.cs │ ├── 20240224152838_ChangedBookDescriptionLength.cs │ ├── 20240224154456_EditedYearPublished.Designer.cs │ ├── 20240224154456_EditedYearPublished.cs │ ├── 20240227115802_AddedEntities.Designer.cs │ ├── 20240227115802_AddedEntities.cs │ ├── 20240228165146_ReviewEntityAdded.Designer.cs │ ├── 20240228165146_ReviewEntityAdded.cs │ ├── 20240228170505_AddedCartEntity.Designer.cs │ ├── 20240228170505_AddedCartEntity.cs │ ├── 20240228171938_EditedEntityConstraints.Designer.cs │ ├── 20240228171938_EditedEntityConstraints.cs │ ├── 20240228180209_AddedWorkingTimeToTheBookStore.Designer.cs │ ├── 20240228180209_AddedWorkingTimeToTheBookStore.cs │ ├── 20240228193200_DatabaseSeed.Designer.cs │ ├── 20240228193200_DatabaseSeed.cs │ ├── 20240320123817_EditedReviewDescriptionLength.Designer.cs │ ├── 20240320123817_EditedReviewDescriptionLength.cs │ ├── 20240320125359_RemovedNullablePropertiesFromReview.Designer.cs │ ├── 20240320125359_RemovedNullablePropertiesFromReview.cs │ ├── 20240322192654_AddedTimeAddedPropertyToCollections.Designer.cs │ ├── 20240322192654_AddedTimeAddedPropertyToCollections.cs │ ├── 20240327190614_AddedCommentsToTheArticles.Designer.cs │ ├── 20240327190614_AddedCommentsToTheArticles.cs │ ├── 20240328180515_ArticleCommentDescriptionLengthMinimized.Designer.cs │ ├── 20240328180515_ArticleCommentDescriptionLengthMinimized.cs │ ├── 20240330195520_AddedEventSeatsAndEventCarts.Designer.cs │ ├── 20240330195520_AddedEventSeatsAndEventCarts.cs │ ├── 20240401124334_AddedTicketPricePropertyToEventEntity.Designer.cs │ ├── 20240401124334_AddedTicketPricePropertyToEventEntity.cs │ ├── 20240411102258_UserExtended.Designer.cs │ ├── 20240411102258_UserExtended.cs │ ├── 20240411131222_Admin-Added.Designer.cs │ ├── 20240411131222_Admin-Added.cs │ ├── 20240412133643_Admin-Edited.Designer.cs │ ├── 20240412133643_Admin-Edited.cs │ ├── 20240412134844_SeedDb-ChangedUserNames.Designer.cs │ ├── 20240412134844_SeedDb-ChangedUserNames.cs │ ├── 20240413181215_AddedUserClaims.Designer.cs │ ├── 20240413181215_AddedUserClaims.cs │ ├── 20240414161133_MoreGenresSeeded.Designer.cs │ ├── 20240414161133_MoreGenresSeeded.cs │ ├── 20240414165910_SeededMoreBooks.Designer.cs │ ├── 20240414165910_SeededMoreBooks.cs │ ├── 20240414170740_SeededMoreUsers.Designer.cs │ ├── 20240414170740_SeededMoreUsers.cs │ ├── 20240414172242_SeededBookReviews.Designer.cs │ ├── 20240414172242_SeededBookReviews.cs │ ├── 20240414172547_SeededRemainingClaims.Designer.cs │ ├── 20240414172547_SeededRemainingClaims.cs │ ├── 20240416151556_SeededMoreEventsAndUpdatedConstants.Designer.cs │ ├── 20240416151556_SeededMoreEventsAndUpdatedConstants.cs │ ├── 20240416153956_SeededMoreArticles.Designer.cs │ ├── 20240416153956_SeededMoreArticles.cs │ ├── 20240416160758_SeededMoreBookStores.Designer.cs │ ├── 20240416160758_SeededMoreBookStores.cs │ ├── 20240416165234_SeededArticleComments.Designer.cs │ ├── 20240416165234_SeededArticleComments.cs │ └── NovelNestDbContextModelSnapshot.cs └── NovelNest.Infrastructure.csproj ├── NovelNest.UnitTests ├── AdminServiceUnitTests.cs ├── BookServiceUnitTests.cs ├── NovelNest.UnitTests.csproj ├── PublisherServiceUnitTests.cs ├── UserServiceUnitTests.cs └── Usings.cs ├── NovelNest.sln ├── NovelNest ├── Areas │ ├── Admin │ │ ├── Components │ │ │ └── AdminMenuComponent.cs │ │ ├── Controllers │ │ │ ├── AdminBaseController.cs │ │ │ └── UserController.cs │ │ └── Views │ │ │ ├── Shared │ │ │ ├── Components │ │ │ │ └── AdminMenuComponent │ │ │ │ │ └── Default.cshtml │ │ │ ├── _AdminPartial.cshtml │ │ │ ├── _Layout.cshtml │ │ │ ├── _Layout.cshtml.css │ │ │ └── _UserPagesPartial.cshtml │ │ │ ├── User │ │ │ ├── AddAdmin.cshtml │ │ │ ├── AddPublisher.cshtml │ │ │ ├── All.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── RemoveAdmin.cshtml │ │ │ └── RemovePublisher.cshtml │ │ │ ├── _ViewImports.cshtml │ │ │ └── _ViewStart.cshtml │ └── Identity │ │ └── Pages │ │ ├── Account │ │ ├── Login.cshtml │ │ ├── Login.cshtml.cs │ │ ├── Register.cshtml │ │ ├── Register.cshtml.cs │ │ └── _ViewImports.cshtml │ │ ├── _ValidationScriptsPartial.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── Attributes │ ├── MustBePublisherAttribute.cs │ └── NotPublisherAttribute.cs ├── Components │ └── MainMenuComponent.cs ├── Controllers │ ├── ArticleController.cs │ ├── BaseController.cs │ ├── BookController.cs │ ├── BookStoreController.cs │ ├── EventController.cs │ ├── HomeController.cs │ └── PublisherController.cs ├── Extensions │ ├── ApplicationBuilderExtensions.cs │ ├── ClaimsPrincipalExtensions.cs │ └── ServiceCollectionExtension.cs ├── ModelBinders │ ├── DecimalModelBinder.cs │ └── DecimalModelBinderProvider.cs ├── Models │ └── ErrorViewModel.cs ├── NovelNest.csproj ├── Program.cs ├── Properties │ ├── launchSettings.json │ ├── serviceDependencies.json │ └── serviceDependencies.local.json ├── Views │ ├── Article │ │ ├── AddComment.cshtml │ │ ├── All.cshtml │ │ ├── AllComments.cshtml │ │ ├── DeleteComment.cshtml │ │ ├── Details.cshtml │ │ └── EditComment.cshtml │ ├── Book │ │ ├── AddReview.cshtml │ │ ├── All.cshtml │ │ ├── AllBookStoresWithBook.cshtml │ │ ├── AllReviews.cshtml │ │ ├── BookReviewDetails.cshtml │ │ ├── BookReviewQuestion.cshtml │ │ ├── ChangePage.cshtml │ │ ├── CurrentlyReading.cshtml │ │ ├── DeleteBookReview.cshtml │ │ ├── Details.cshtml │ │ ├── DetailsCurrentlyReading.cshtml │ │ ├── DetailsRead.cshtml │ │ ├── DetailsWantToRead.cshtml │ │ ├── EditBookReview.cshtml │ │ ├── Mine.cshtml │ │ ├── Read.cshtml │ │ └── WantToRead.cshtml │ ├── BookStore │ │ ├── All.cshtml │ │ ├── AllBooks.cshtml │ │ └── Details.cshtml │ ├── Event │ │ ├── All.cshtml │ │ └── Details.cshtml │ ├── Home │ │ ├── Error.cshtml │ │ ├── Error400.cshtml │ │ ├── Error401.cshtml │ │ └── Index.cshtml │ ├── Publisher │ │ ├── AddArticle.cshtml │ │ ├── AddBook.cshtml │ │ ├── AddBookStore.cshtml │ │ ├── AddEvent.cshtml │ │ ├── DeleteArticle.cshtml │ │ ├── DeleteBook.cshtml │ │ ├── DeleteBookStore.cshtml │ │ ├── DeleteEvent.cshtml │ │ ├── EditArticle.cshtml │ │ ├── EditBook.cshtml │ │ ├── EditBookStore.cshtml │ │ ├── EditEvent.cshtml │ │ ├── RemoveBookFromBookStore.cshtml │ │ └── SelectBookFromBookStore.cshtml │ ├── Shared │ │ ├── Components │ │ │ └── MainMenuComponent │ │ │ │ └── Default.cshtml │ │ ├── Error.cshtml │ │ ├── _ArticleCommentPagesPartial.cshtml │ │ ├── _ArticleCommentPartial.cshtml │ │ ├── _ArticlePagesPartial.cshtml │ │ ├── _ArticlePartial.cshtml │ │ ├── _BookPagesPartial.cshtml │ │ ├── _BookPartial.cshtml │ │ ├── _BookReviewPagesPartial.cshtml │ │ ├── _BookReviewPartial.cshtml │ │ ├── _BookStorePagesPartial.cshtml │ │ ├── _BookStorePartial.cshtml │ │ ├── _BookStoresWithBookPagesPartial.cshtml │ │ ├── _EventPagesPartial.cshtml │ │ ├── _EventPartial.cshtml │ │ ├── _Layout.cshtml │ │ ├── _Layout.cshtml.css │ │ ├── _LoginPartial.cshtml │ │ ├── _SelectBookPagesPartial.cshtml │ │ └── _ValidationScriptsPartial.cshtml │ ├── _ViewImports.cshtml │ └── _ViewStart.cshtml ├── appsettings.Development.json ├── appsettings.json └── wwwroot │ ├── css │ ├── site.css │ └── theme.css │ ├── favicon.ico │ ├── js │ ├── jquery.override-validator.js │ └── site.js │ └── lib │ ├── bootstrap │ ├── LICENSE │ └── dist │ │ ├── css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-grid.rtl.css │ │ ├── bootstrap-grid.rtl.css.map │ │ ├── bootstrap-grid.rtl.min.css │ │ ├── bootstrap-grid.rtl.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap-reboot.rtl.css │ │ ├── bootstrap-reboot.rtl.css.map │ │ ├── bootstrap-reboot.rtl.min.css │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ ├── bootstrap-utilities.css │ │ ├── bootstrap-utilities.css.map │ │ ├── bootstrap-utilities.min.css │ │ ├── bootstrap-utilities.min.css.map │ │ ├── bootstrap-utilities.rtl.css │ │ ├── bootstrap-utilities.rtl.css.map │ │ ├── bootstrap-utilities.rtl.min.css │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── bootstrap.rtl.css │ │ ├── bootstrap.rtl.css.map │ │ ├── bootstrap.rtl.min.css │ │ └── bootstrap.rtl.min.css.map │ │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.esm.js │ │ ├── bootstrap.esm.js.map │ │ ├── bootstrap.esm.min.js │ │ ├── bootstrap.esm.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map │ ├── jquery-validation-unobtrusive │ ├── LICENSE.txt │ ├── jquery.validate.unobtrusive.js │ └── jquery.validate.unobtrusive.min.js │ ├── jquery-validation │ ├── LICENSE.md │ └── dist │ │ ├── additional-methods.js │ │ ├── additional-methods.min.js │ │ ├── jquery.validate.js │ │ └── jquery.validate.min.js │ └── jquery │ ├── LICENSE.txt │ └── dist │ ├── jquery.js │ ├── jquery.min.js │ └── jquery.min.map └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NovelNest.Core/Constants/AdminConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Constants/AdminConstants.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IAdminService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IAdminService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IArticleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IArticleModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IArticleService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IBookModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IBookModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IBookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IBookService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IBookStoreModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IBookStoreModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IBookStoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IBookStoreService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IEventModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IEventModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IEventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IEventService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IPublisherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IPublisherService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Contracts/IUserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Contracts/IUserService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/ArticleCommentSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/ArticleCommentSorting.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/ArticleSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/ArticleSorting.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/BookReviewSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/BookReviewSorting.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/BookSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/BookSorting.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/BookStoreStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/BookStoreStatus.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/EventSorting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/EventSorting.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/EventStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/EventStatus.cs -------------------------------------------------------------------------------- /NovelNest.Core/Enums/UserRoleStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Enums/UserRoleStatus.cs -------------------------------------------------------------------------------- /NovelNest.Core/Extensions/ArticleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Extensions/ArticleExtensions.cs -------------------------------------------------------------------------------- /NovelNest.Core/Extensions/BookExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Extensions/BookExtensions.cs -------------------------------------------------------------------------------- /NovelNest.Core/Extensions/BookStoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Extensions/BookStoreExtensions.cs -------------------------------------------------------------------------------- /NovelNest.Core/Extensions/EventExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Extensions/EventExtensions.cs -------------------------------------------------------------------------------- /NovelNest.Core/Extensions/IQueryableBookExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Extensions/IQueryableBookExtension.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Admin/AllUsersQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Admin/AllUsersQueryModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Admin/UserQueryServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Admin/UserQueryServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Admin/UserServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Admin/UserServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Article/AllArticleCommentsQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Article/AllArticleCommentsQueryModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Article/AllArticlesQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Article/AllArticlesQueryModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Article/ArticleCommentQueryServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Article/ArticleCommentQueryServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Article/ArticleCommentServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Article/ArticleCommentServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Article/ArticleQueryServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Article/ArticleQueryServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Article/ArticleServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Article/ArticleServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Book/AllBookCollectionsModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Book/AllBookCollectionsModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Book/AllBookReviewsQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Book/AllBookReviewsQueryModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Book/AllBooksQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Book/AllBooksQueryModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Book/BookQueryServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Book/BookQueryServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Book/BookReviewQueryServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Book/BookReviewQueryServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Book/BookReviewServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Book/BookReviewServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Book/BookServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Book/BookServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/BookStore/AllBookStoresQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/BookStore/AllBookStoresQueryModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/BookStore/BookStoreQueryServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/BookStore/BookStoreQueryServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/BookStore/BookStoreServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/BookStore/BookStoreServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Event/AllEventsQueryModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Event/AllEventsQueryModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Event/EventQueryServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Event/EventQueryServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/QueryModels/Event/EventServiceModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/QueryModels/Event/EventServiceModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Admin/UserRemoveViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Admin/UserRemoveViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Admin/UserViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Admin/UserViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Article/ArticleAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Article/ArticleAddViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Article/ArticleCommentAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Article/ArticleCommentAddViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Article/ArticleCommentDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Article/ArticleCommentDeleteViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Article/ArticleCommentEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Article/ArticleCommentEditViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Article/ArticleDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Article/ArticleDeleteViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Article/ArticleEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Article/ArticleEditViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Article/ArticleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Article/ArticleViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookAddViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookDeleteViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookEditViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookReviewAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookReviewAddViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookReviewDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookReviewDeleteViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookReviewDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookReviewDetailsViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookReviewEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookReviewEditViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookReviewQuestionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookReviewQuestionViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/BookViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/BookViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/ChangePageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/ChangePageViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/CoverTypeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/CoverTypeViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Book/GenreViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Book/GenreViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/BookStore/BookBookStoreDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/BookStore/BookBookStoreDeleteViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/BookStore/BookStoreAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/BookStore/BookStoreAddViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/BookStore/BookStoreDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/BookStore/BookStoreDeleteViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/BookStore/BookStoreDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/BookStore/BookStoreDetailsViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/BookStore/BookStoreEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/BookStore/BookStoreEditViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/BookStore/BookStoreIndexViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/BookStore/BookStoreIndexViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Event/EventAddViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Event/EventAddViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Event/EventAllViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Event/EventAllViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Event/EventDeleteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Event/EventDeleteViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Event/EventDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Event/EventDetailsViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/Models/ViewModels/Event/EventEditViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Models/ViewModels/Event/EventEditViewModel.cs -------------------------------------------------------------------------------- /NovelNest.Core/NovelNest.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/NovelNest.Core.csproj -------------------------------------------------------------------------------- /NovelNest.Core/Services/AdminService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Services/AdminService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Services/ArticleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Services/ArticleService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Services/BookService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Services/BookService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Services/BookStoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Services/BookStoreService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Services/EventService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Services/EventService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Services/PublisherService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Services/PublisherService.cs -------------------------------------------------------------------------------- /NovelNest.Core/Services/UserService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Core/Services/UserService.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Common/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Common/IRepository.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Common/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Common/Repository.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Constants/CustomClaims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Constants/CustomClaims.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Constants/DataConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Constants/DataConstants.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/ArticleCommentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/ArticleCommentConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/ArticleConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/ArticleConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/BookConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/BookConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/BookReviewConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/BookReviewConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/BookStoreConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/BookStoreConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/CoverTypeConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/CoverTypeConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/EventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/EventConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/GenreConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/GenreConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/PublisherConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/PublisherConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/UserClaimsConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/UserClaimsConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/Configurations/UserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/Configurations/UserConfiguration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/DataSeeding/DataSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/DataSeeding/DataSeed.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Articles/Article.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Articles/Article.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Articles/ArticleComment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Articles/ArticleComment.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/BookStores/BookStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/BookStores/BookStore.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/BookUserActions/BookUserCurrentlyReading.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/BookUserActions/BookUserCurrentlyReading.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/BookUserActions/BookUserRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/BookUserActions/BookUserRead.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/BookUserActions/BookUserWantToRead.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/BookUserActions/BookUserWantToRead.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Books/Book.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Books/Book.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Books/BookReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Books/BookReview.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Books/CoverType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Books/CoverType.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Books/Genre.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Books/Genre.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Carts/Cart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Carts/Cart.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Events/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Events/Event.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Mappings/BookBookStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Mappings/BookBookStore.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Mappings/BookCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Mappings/BookCart.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Mappings/EventCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Mappings/EventCart.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Mappings/EventParticipant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Mappings/EventParticipant.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Roles/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Roles/ApplicationUser.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/Models/Roles/Publisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/Models/Roles/Publisher.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Data/NovelNestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Data/NovelNestDbContext.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224112842_IdentityInitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224112842_IdentityInitialMigration.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224112842_IdentityInitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224112842_IdentityInitialMigration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224135644_NovelNestEntities_InitialMigration.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224135644_NovelNestEntities_InitialMigration.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224135644_NovelNestEntities_InitialMigration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224135644_NovelNestEntities_InitialMigration.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224152016_BookYearPublishedTypeChanged.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224152016_BookYearPublishedTypeChanged.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224152016_BookYearPublishedTypeChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224152016_BookYearPublishedTypeChanged.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224152838_ChangedBookDescriptionLength.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224152838_ChangedBookDescriptionLength.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224152838_ChangedBookDescriptionLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224152838_ChangedBookDescriptionLength.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224154456_EditedYearPublished.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224154456_EditedYearPublished.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240224154456_EditedYearPublished.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240224154456_EditedYearPublished.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240227115802_AddedEntities.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240227115802_AddedEntities.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240227115802_AddedEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240227115802_AddedEntities.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228165146_ReviewEntityAdded.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228165146_ReviewEntityAdded.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228165146_ReviewEntityAdded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228165146_ReviewEntityAdded.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228170505_AddedCartEntity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228170505_AddedCartEntity.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228170505_AddedCartEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228170505_AddedCartEntity.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228171938_EditedEntityConstraints.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228171938_EditedEntityConstraints.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228171938_EditedEntityConstraints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228171938_EditedEntityConstraints.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228180209_AddedWorkingTimeToTheBookStore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228180209_AddedWorkingTimeToTheBookStore.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228180209_AddedWorkingTimeToTheBookStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228180209_AddedWorkingTimeToTheBookStore.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228193200_DatabaseSeed.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228193200_DatabaseSeed.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240228193200_DatabaseSeed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240228193200_DatabaseSeed.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240320123817_EditedReviewDescriptionLength.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240320123817_EditedReviewDescriptionLength.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240320123817_EditedReviewDescriptionLength.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240320123817_EditedReviewDescriptionLength.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240320125359_RemovedNullablePropertiesFromReview.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240320125359_RemovedNullablePropertiesFromReview.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240320125359_RemovedNullablePropertiesFromReview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240320125359_RemovedNullablePropertiesFromReview.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240322192654_AddedTimeAddedPropertyToCollections.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240322192654_AddedTimeAddedPropertyToCollections.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240322192654_AddedTimeAddedPropertyToCollections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240322192654_AddedTimeAddedPropertyToCollections.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240327190614_AddedCommentsToTheArticles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240327190614_AddedCommentsToTheArticles.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240327190614_AddedCommentsToTheArticles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240327190614_AddedCommentsToTheArticles.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240328180515_ArticleCommentDescriptionLengthMinimized.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240328180515_ArticleCommentDescriptionLengthMinimized.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240328180515_ArticleCommentDescriptionLengthMinimized.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240328180515_ArticleCommentDescriptionLengthMinimized.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240330195520_AddedEventSeatsAndEventCarts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240330195520_AddedEventSeatsAndEventCarts.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240330195520_AddedEventSeatsAndEventCarts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240330195520_AddedEventSeatsAndEventCarts.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240401124334_AddedTicketPricePropertyToEventEntity.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240401124334_AddedTicketPricePropertyToEventEntity.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240401124334_AddedTicketPricePropertyToEventEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240401124334_AddedTicketPricePropertyToEventEntity.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240411102258_UserExtended.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240411102258_UserExtended.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240411102258_UserExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240411102258_UserExtended.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240411131222_Admin-Added.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240411131222_Admin-Added.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240411131222_Admin-Added.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240411131222_Admin-Added.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240412133643_Admin-Edited.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240412133643_Admin-Edited.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240412133643_Admin-Edited.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240412133643_Admin-Edited.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240412134844_SeedDb-ChangedUserNames.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240412134844_SeedDb-ChangedUserNames.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240412134844_SeedDb-ChangedUserNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240412134844_SeedDb-ChangedUserNames.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240413181215_AddedUserClaims.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240413181215_AddedUserClaims.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240413181215_AddedUserClaims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240413181215_AddedUserClaims.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414161133_MoreGenresSeeded.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414161133_MoreGenresSeeded.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414161133_MoreGenresSeeded.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414161133_MoreGenresSeeded.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414165910_SeededMoreBooks.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414165910_SeededMoreBooks.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414165910_SeededMoreBooks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414165910_SeededMoreBooks.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414170740_SeededMoreUsers.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414170740_SeededMoreUsers.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414170740_SeededMoreUsers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414170740_SeededMoreUsers.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414172242_SeededBookReviews.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414172242_SeededBookReviews.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414172242_SeededBookReviews.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414172242_SeededBookReviews.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414172547_SeededRemainingClaims.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414172547_SeededRemainingClaims.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240414172547_SeededRemainingClaims.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240414172547_SeededRemainingClaims.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416151556_SeededMoreEventsAndUpdatedConstants.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416151556_SeededMoreEventsAndUpdatedConstants.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416151556_SeededMoreEventsAndUpdatedConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416151556_SeededMoreEventsAndUpdatedConstants.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416153956_SeededMoreArticles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416153956_SeededMoreArticles.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416153956_SeededMoreArticles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416153956_SeededMoreArticles.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416160758_SeededMoreBookStores.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416160758_SeededMoreBookStores.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416160758_SeededMoreBookStores.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416160758_SeededMoreBookStores.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416165234_SeededArticleComments.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416165234_SeededArticleComments.Designer.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/20240416165234_SeededArticleComments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/20240416165234_SeededArticleComments.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/Migrations/NovelNestDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/Migrations/NovelNestDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /NovelNest.Infrastructure/NovelNest.Infrastructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.Infrastructure/NovelNest.Infrastructure.csproj -------------------------------------------------------------------------------- /NovelNest.UnitTests/AdminServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.UnitTests/AdminServiceUnitTests.cs -------------------------------------------------------------------------------- /NovelNest.UnitTests/BookServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.UnitTests/BookServiceUnitTests.cs -------------------------------------------------------------------------------- /NovelNest.UnitTests/NovelNest.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.UnitTests/NovelNest.UnitTests.csproj -------------------------------------------------------------------------------- /NovelNest.UnitTests/PublisherServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.UnitTests/PublisherServiceUnitTests.cs -------------------------------------------------------------------------------- /NovelNest.UnitTests/UserServiceUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.UnitTests/UserServiceUnitTests.cs -------------------------------------------------------------------------------- /NovelNest.UnitTests/Usings.cs: -------------------------------------------------------------------------------- 1 | global using NUnit.Framework; -------------------------------------------------------------------------------- /NovelNest.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest.sln -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Components/AdminMenuComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Components/AdminMenuComponent.cs -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Controllers/AdminBaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Controllers/AdminBaseController.cs -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Controllers/UserController.cs -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/Shared/Components/AdminMenuComponent/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/Shared/Components/AdminMenuComponent/Default.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/Shared/_AdminPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/Shared/_AdminPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/Shared/_UserPagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/Shared/_UserPagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/User/AddAdmin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/User/AddAdmin.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/User/AddPublisher.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/User/AddPublisher.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/User/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/User/All.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/User/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/User/Details.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/User/RemoveAdmin.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/User/RemoveAdmin.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/User/RemovePublisher.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/User/RemovePublisher.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Admin/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/Account/Login.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Identity/Pages/Account/Login.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/Account/Login.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Identity/Pages/Account/Login.cshtml.cs -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/Account/Register.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Identity/Pages/Account/Register.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/Account/Register.cshtml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Identity/Pages/Account/Register.cshtml.cs -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/Account/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using NovelNest.Areas.Identity.Pages.Account -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Identity/Pages/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Identity/Pages/_ViewImports.cshtml -------------------------------------------------------------------------------- /NovelNest/Areas/Identity/Pages/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Areas/Identity/Pages/_ViewStart.cshtml -------------------------------------------------------------------------------- /NovelNest/Attributes/MustBePublisherAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Attributes/MustBePublisherAttribute.cs -------------------------------------------------------------------------------- /NovelNest/Attributes/NotPublisherAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Attributes/NotPublisherAttribute.cs -------------------------------------------------------------------------------- /NovelNest/Components/MainMenuComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Components/MainMenuComponent.cs -------------------------------------------------------------------------------- /NovelNest/Controllers/ArticleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Controllers/ArticleController.cs -------------------------------------------------------------------------------- /NovelNest/Controllers/BaseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Controllers/BaseController.cs -------------------------------------------------------------------------------- /NovelNest/Controllers/BookController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Controllers/BookController.cs -------------------------------------------------------------------------------- /NovelNest/Controllers/BookStoreController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Controllers/BookStoreController.cs -------------------------------------------------------------------------------- /NovelNest/Controllers/EventController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Controllers/EventController.cs -------------------------------------------------------------------------------- /NovelNest/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Controllers/HomeController.cs -------------------------------------------------------------------------------- /NovelNest/Controllers/PublisherController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Controllers/PublisherController.cs -------------------------------------------------------------------------------- /NovelNest/Extensions/ApplicationBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Extensions/ApplicationBuilderExtensions.cs -------------------------------------------------------------------------------- /NovelNest/Extensions/ClaimsPrincipalExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Extensions/ClaimsPrincipalExtensions.cs -------------------------------------------------------------------------------- /NovelNest/Extensions/ServiceCollectionExtension.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Extensions/ServiceCollectionExtension.cs -------------------------------------------------------------------------------- /NovelNest/ModelBinders/DecimalModelBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/ModelBinders/DecimalModelBinder.cs -------------------------------------------------------------------------------- /NovelNest/ModelBinders/DecimalModelBinderProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/ModelBinders/DecimalModelBinderProvider.cs -------------------------------------------------------------------------------- /NovelNest/Models/ErrorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Models/ErrorViewModel.cs -------------------------------------------------------------------------------- /NovelNest/NovelNest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/NovelNest.csproj -------------------------------------------------------------------------------- /NovelNest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Program.cs -------------------------------------------------------------------------------- /NovelNest/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Properties/launchSettings.json -------------------------------------------------------------------------------- /NovelNest/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Properties/serviceDependencies.json -------------------------------------------------------------------------------- /NovelNest/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Properties/serviceDependencies.local.json -------------------------------------------------------------------------------- /NovelNest/Views/Article/AddComment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Article/AddComment.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Article/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Article/All.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Article/AllComments.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Article/AllComments.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Article/DeleteComment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Article/DeleteComment.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Article/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Article/Details.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Article/EditComment.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Article/EditComment.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/AddReview.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/AddReview.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/All.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/AllBookStoresWithBook.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/AllBookStoresWithBook.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/AllReviews.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/AllReviews.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/BookReviewDetails.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/BookReviewDetails.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/BookReviewQuestion.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/BookReviewQuestion.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/ChangePage.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/ChangePage.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/CurrentlyReading.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/CurrentlyReading.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/DeleteBookReview.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/DeleteBookReview.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/Details.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/DetailsCurrentlyReading.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/DetailsCurrentlyReading.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/DetailsRead.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/DetailsRead.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/DetailsWantToRead.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/DetailsWantToRead.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/EditBookReview.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/EditBookReview.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/Mine.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/Mine.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/Read.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/Read.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Book/WantToRead.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Book/WantToRead.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/BookStore/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/BookStore/All.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/BookStore/AllBooks.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/BookStore/AllBooks.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/BookStore/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/BookStore/Details.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Event/All.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Event/All.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Event/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Event/Details.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Home/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Home/Error.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Home/Error400.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Home/Error400.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Home/Error401.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Home/Error401.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/AddArticle.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/AddArticle.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/AddBook.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/AddBook.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/AddBookStore.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/AddBookStore.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/AddEvent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/AddEvent.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/DeleteArticle.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/DeleteArticle.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/DeleteBook.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/DeleteBook.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/DeleteBookStore.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/DeleteBookStore.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/DeleteEvent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/DeleteEvent.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/EditArticle.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/EditArticle.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/EditBook.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/EditBook.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/EditBookStore.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/EditBookStore.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/EditEvent.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/EditEvent.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/RemoveBookFromBookStore.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/RemoveBookFromBookStore.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Publisher/SelectBookFromBookStore.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Publisher/SelectBookFromBookStore.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/Components/MainMenuComponent/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/Components/MainMenuComponent/Default.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/Error.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_ArticleCommentPagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_ArticleCommentPagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_ArticleCommentPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_ArticleCommentPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_ArticlePagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_ArticlePagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_ArticlePartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_ArticlePartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_BookPagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_BookPagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_BookPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_BookPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_BookReviewPagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_BookReviewPagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_BookReviewPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_BookReviewPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_BookStorePagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_BookStorePagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_BookStorePartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_BookStorePartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_BookStoresWithBookPagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_BookStoresWithBookPagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_EventPagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_EventPagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_EventPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_EventPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_Layout.cshtml.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_Layout.cshtml.css -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_LoginPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_LoginPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_SelectBookPagesPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_SelectBookPagesPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/Shared/_ValidationScriptsPartial.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/Shared/_ValidationScriptsPartial.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /NovelNest/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /NovelNest/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/appsettings.Development.json -------------------------------------------------------------------------------- /NovelNest/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/appsettings.json -------------------------------------------------------------------------------- /NovelNest/wwwroot/css/site.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/css/site.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/css/theme.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/favicon.ico -------------------------------------------------------------------------------- /NovelNest/wwwroot/js/jquery.override-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/js/jquery.override-validator.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/js/site.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/js/site.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/LICENSE -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation/LICENSE.md -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation/dist/additional-methods.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation/dist/additional-methods.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation/dist/additional-methods.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation/dist/additional-methods.min.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation/dist/jquery.validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation/dist/jquery.validate.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery/LICENSE.txt -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery/dist/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery/dist/jquery.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery/dist/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery/dist/jquery.min.js -------------------------------------------------------------------------------- /NovelNest/wwwroot/lib/jquery/dist/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/NovelNest/wwwroot/lib/jquery/dist/jquery.min.map -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nevenailievaa/NovelNest/HEAD/README.md --------------------------------------------------------------------------------