├── .idea └── .idea.ELearningApi │ └── .idea │ ├── .gitignore │ ├── aws.xml │ ├── indexLayout.xml │ └── vcs.xml ├── .vs ├── ELearningApi │ ├── DesignTimeBuild │ │ └── .dtbcache.v2 │ └── v17 │ │ ├── .futdcache.v2 │ │ ├── .suo │ │ └── DocumentLayout.json └── ProjectEvaluation │ ├── elearningapi.metadata.v8.bin │ ├── elearningapi.projects.v8.bin │ └── elearningapi.strings.v8.bin ├── ELearningApi.Api ├── Base │ └── AppControllerBase.cs ├── Controllers │ ├── AuthController.cs │ ├── CategoryController.cs │ ├── CourseController.cs │ ├── EnrollmentController.cs │ ├── InstructorsController.cs │ ├── LectureController.cs │ ├── ProgressController.cs │ ├── QuizAttemptController.cs │ ├── QuizController.cs │ ├── ReviewController.cs │ ├── SearchController.cs │ ├── SectionController.cs │ ├── StudentsController.cs │ └── allcontroller.cs ├── DataScript.sql ├── ELearningApi.Api.csproj ├── ELearningApi.Api.csproj.user ├── Program.cs ├── Properties │ ├── PublishProfiles │ │ ├── site9191-WebDeploy.pubxml │ │ └── site9191-WebDeploy.pubxml.user │ └── launchSettings.json ├── appsettings.Development.json ├── appsettings.json ├── bin │ ├── Debug │ │ ├── ELearningApi.Api.xml │ │ └── net8.0 │ │ │ ├── AutoMapper.dll │ │ │ ├── Azure.Core.dll │ │ │ ├── Azure.Identity.dll │ │ │ ├── BouncyCastle.Cryptography.dll │ │ │ ├── ELearningApi.Api.deps.json │ │ │ ├── ELearningApi.Api.dll │ │ │ ├── ELearningApi.Api.exe │ │ │ ├── ELearningApi.Api.pdb │ │ │ ├── ELearningApi.Api.runtimeconfig.json │ │ │ ├── ELearningApi.Api.xml │ │ │ ├── ELearningApi.Core.dll │ │ │ ├── ELearningApi.Core.pdb │ │ │ ├── ELearningApi.Data.dll │ │ │ ├── ELearningApi.Data.pdb │ │ │ ├── ELearningApi.Infrustructure.dll │ │ │ ├── ELearningApi.Infrustructure.pdb │ │ │ ├── ELearningApi.Service.dll │ │ │ ├── ELearningApi.Service.pdb │ │ │ ├── FluentValidation.AspNetCore.dll │ │ │ ├── FluentValidation.DependencyInjectionExtensions.dll │ │ │ ├── FluentValidation.dll │ │ │ ├── Humanizer.dll │ │ │ ├── MailKit.dll │ │ │ ├── MediatR.Contracts.dll │ │ │ ├── MediatR.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Microsoft.SqlServer.Server.dll │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── MimeKit.dll │ │ │ ├── Mono.TextTemplating.dll │ │ │ ├── Otp.NET.dll │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ ├── Serilog.dll │ │ │ ├── StoredProcedureEFCore.dll │ │ │ ├── Swashbuckle.AspNetCore.Annotations.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.CodeDom.dll │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ ├── System.Formats.Asn1.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── System.Memory.Data.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── System.Windows.Extensions.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── cs │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── runtimes │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── net6.0 │ │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ │ └── System.Drawing.Common.dll │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── net6.0 │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ ├── System.Drawing.Common.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ └── System.Windows.Extensions.dll │ │ │ ├── tr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ └── Release │ │ ├── ELearningApi.Api.xml │ │ └── net8.0 │ │ ├── AutoMapper.dll │ │ ├── Azure.Core.dll │ │ ├── Azure.Identity.dll │ │ ├── BouncyCastle.Cryptography.dll │ │ ├── ELearningApi.Api.deps.json │ │ ├── ELearningApi.Api.dll │ │ ├── ELearningApi.Api.exe │ │ ├── ELearningApi.Api.pdb │ │ ├── ELearningApi.Api.runtimeconfig.json │ │ ├── ELearningApi.Api.xml │ │ ├── ELearningApi.Core.dll │ │ ├── ELearningApi.Core.pdb │ │ ├── ELearningApi.Data.dll │ │ ├── ELearningApi.Data.pdb │ │ ├── ELearningApi.Infrustructure.dll │ │ ├── ELearningApi.Infrustructure.pdb │ │ ├── ELearningApi.Service.dll │ │ ├── ELearningApi.Service.pdb │ │ ├── FluentValidation.AspNetCore.dll │ │ ├── FluentValidation.DependencyInjectionExtensions.dll │ │ ├── FluentValidation.dll │ │ ├── Humanizer.dll │ │ ├── MailKit.dll │ │ ├── MediatR.Contracts.dll │ │ ├── MediatR.dll │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ ├── Microsoft.CodeAnalysis.dll │ │ ├── Microsoft.Data.SqlClient.dll │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ ├── Microsoft.EntityFrameworkCore.Design.dll │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ │ ├── Microsoft.Extensions.Options.dll │ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll │ │ ├── Microsoft.Identity.Client.dll │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ ├── Microsoft.OpenApi.dll │ │ ├── Microsoft.SqlServer.Server.dll │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ ├── MimeKit.dll │ │ ├── Mono.TextTemplating.dll │ │ ├── Otp.NET.dll │ │ ├── Serilog.Extensions.Logging.dll │ │ ├── Serilog.dll │ │ ├── StoredProcedureEFCore.dll │ │ ├── Swashbuckle.AspNetCore.Annotations.dll │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ ├── System.CodeDom.dll │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.dll │ │ ├── System.Configuration.ConfigurationManager.dll │ │ ├── System.Drawing.Common.dll │ │ ├── System.Formats.Asn1.dll │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ ├── System.Memory.Data.dll │ │ ├── System.Runtime.Caching.dll │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ ├── System.Security.Permissions.dll │ │ ├── System.Text.Json.dll │ │ ├── System.Windows.Extensions.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── de │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── es │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── fr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── it │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ja │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ko │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pl │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── ru │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── runtimes │ │ ├── unix │ │ │ └── lib │ │ │ │ └── net6.0 │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ └── System.Drawing.Common.dll │ │ ├── win-arm │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-arm64 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x64 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ ├── win-x86 │ │ │ └── native │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ └── win │ │ │ └── lib │ │ │ └── net6.0 │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ └── System.Windows.Extensions.dll │ │ ├── tr │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ └── Microsoft.CodeAnalysis.resources.dll └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.4D4BEB5F.Up2Date │ │ ├── ELearningApi.Api.AssemblyInfo.cs │ │ ├── ELearningApi.Api.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Api.GlobalUsings.g.cs │ │ ├── ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache │ │ ├── ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cs │ │ ├── ELearningApi.Api.assets.cache │ │ ├── ELearningApi.Api.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Api.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Api.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Api.dll │ │ ├── ELearningApi.Api.genruntimeconfig.cache │ │ ├── ELearningApi.Api.pdb │ │ ├── apphost.exe │ │ ├── ref │ │ └── ELearningApi.Api.dll │ │ ├── refint │ │ └── ELearningApi.Api.dll │ │ ├── staticwebassets.build.json │ │ └── staticwebassets │ │ ├── msbuild.build.ELearningApi.Api.props │ │ ├── msbuild.buildMultiTargeting.ELearningApi.Api.props │ │ └── msbuild.buildTransitive.ELearningApi.Api.props │ ├── ELearningApi.Api.csproj.EntityFrameworkCore.targets │ ├── ELearningApi.Api.csproj.nuget.dgspec.json │ ├── ELearningApi.Api.csproj.nuget.g.props │ ├── ELearningApi.Api.csproj.nuget.g.targets │ ├── Release │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.4D4BEB5F.Up2Date │ │ ├── ELearningApi.Api.AssemblyInfo.cs │ │ ├── ELearningApi.Api.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Api.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Api.GlobalUsings.g.cs │ │ ├── ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache │ │ ├── ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cs │ │ ├── ELearningApi.Api.assets.cache │ │ ├── ELearningApi.Api.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Api.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Api.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Api.deps.json │ │ ├── ELearningApi.Api.dll │ │ ├── ELearningApi.Api.genpublishdeps.cache │ │ ├── ELearningApi.Api.genruntimeconfig.cache │ │ ├── ELearningApi.Api.pdb │ │ ├── PubTmp │ │ ├── ELearningApi.Api.Parameters.xml │ │ ├── ELearningApi.Api.SourceManifest.xml │ │ └── Out │ │ │ ├── AutoMapper.dll │ │ │ ├── Azure.Core.dll │ │ │ ├── Azure.Identity.dll │ │ │ ├── BouncyCastle.Cryptography.dll │ │ │ ├── ELearningApi.Api.deps.json │ │ │ ├── ELearningApi.Api.dll │ │ │ ├── ELearningApi.Api.exe │ │ │ ├── ELearningApi.Api.pdb │ │ │ ├── ELearningApi.Api.runtimeconfig.json │ │ │ ├── ELearningApi.Api.xml │ │ │ ├── ELearningApi.Core.dll │ │ │ ├── ELearningApi.Core.pdb │ │ │ ├── ELearningApi.Data.dll │ │ │ ├── ELearningApi.Data.pdb │ │ │ ├── ELearningApi.Infrustructure.dll │ │ │ ├── ELearningApi.Infrustructure.pdb │ │ │ ├── ELearningApi.Service.dll │ │ │ ├── ELearningApi.Service.pdb │ │ │ ├── FluentValidation.AspNetCore.dll │ │ │ ├── FluentValidation.DependencyInjectionExtensions.dll │ │ │ ├── FluentValidation.dll │ │ │ ├── Humanizer.dll │ │ │ ├── MailKit.dll │ │ │ ├── MediatR.Contracts.dll │ │ │ ├── MediatR.dll │ │ │ ├── Microsoft.AspNetCore.Authentication.JwtBearer.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.Internal.dll │ │ │ ├── Microsoft.AspNetCore.Cryptography.KeyDerivation.dll │ │ │ ├── Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Bcl.AsyncInterfaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.dll │ │ │ ├── Microsoft.CodeAnalysis.dll │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Abstractions.dll │ │ │ ├── Microsoft.EntityFrameworkCore.Relational.dll │ │ │ ├── Microsoft.EntityFrameworkCore.SqlServer.dll │ │ │ ├── Microsoft.EntityFrameworkCore.dll │ │ │ ├── Microsoft.Extensions.DependencyModel.dll │ │ │ ├── Microsoft.Extensions.Identity.Core.dll │ │ │ ├── Microsoft.Extensions.Identity.Stores.dll │ │ │ ├── Microsoft.Extensions.Localization.Abstractions.dll │ │ │ ├── Microsoft.Extensions.Options.dll │ │ │ ├── Microsoft.Identity.Client.Extensions.Msal.dll │ │ │ ├── Microsoft.Identity.Client.dll │ │ │ ├── Microsoft.IdentityModel.Abstractions.dll │ │ │ ├── Microsoft.IdentityModel.JsonWebTokens.dll │ │ │ ├── Microsoft.IdentityModel.Logging.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.OpenIdConnect.dll │ │ │ ├── Microsoft.IdentityModel.Protocols.dll │ │ │ ├── Microsoft.IdentityModel.Tokens.dll │ │ │ ├── Microsoft.OpenApi.dll │ │ │ ├── Microsoft.SqlServer.Server.dll │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ ├── MimeKit.dll │ │ │ ├── Mono.TextTemplating.dll │ │ │ ├── Otp.NET.dll │ │ │ ├── Serilog.Extensions.Logging.dll │ │ │ ├── Serilog.dll │ │ │ ├── StoredProcedureEFCore.dll │ │ │ ├── Swashbuckle.AspNetCore.Annotations.dll │ │ │ ├── Swashbuckle.AspNetCore.Swagger.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerGen.dll │ │ │ ├── Swashbuckle.AspNetCore.SwaggerUI.dll │ │ │ ├── System.CodeDom.dll │ │ │ ├── System.Composition.AttributedModel.dll │ │ │ ├── System.Composition.Convention.dll │ │ │ ├── System.Composition.Hosting.dll │ │ │ ├── System.Composition.Runtime.dll │ │ │ ├── System.Composition.TypedParts.dll │ │ │ ├── System.Configuration.ConfigurationManager.dll │ │ │ ├── System.Drawing.Common.dll │ │ │ ├── System.Formats.Asn1.dll │ │ │ ├── System.IdentityModel.Tokens.Jwt.dll │ │ │ ├── System.Memory.Data.dll │ │ │ ├── System.Runtime.Caching.dll │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ ├── System.Security.Permissions.dll │ │ │ ├── System.Text.Json.dll │ │ │ ├── System.Windows.Extensions.dll │ │ │ ├── appsettings.Development.json │ │ │ ├── appsettings.json │ │ │ ├── cs │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── de │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── es │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── fr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── it │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ja │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ko │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pl │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── pt-BR │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── ru │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── runtimes │ │ │ ├── unix │ │ │ │ └── lib │ │ │ │ │ └── net6.0 │ │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ │ └── System.Drawing.Common.dll │ │ │ ├── win-arm │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-arm64 │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-x64 │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ ├── win-x86 │ │ │ │ └── native │ │ │ │ │ └── Microsoft.Data.SqlClient.SNI.dll │ │ │ └── win │ │ │ │ └── lib │ │ │ │ └── net6.0 │ │ │ │ ├── Microsoft.Data.SqlClient.dll │ │ │ │ ├── Microsoft.Win32.SystemEvents.dll │ │ │ │ ├── System.Drawing.Common.dll │ │ │ │ ├── System.Runtime.Caching.dll │ │ │ │ ├── System.Security.Cryptography.ProtectedData.dll │ │ │ │ └── System.Windows.Extensions.dll │ │ │ ├── tr │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ ├── web.config │ │ │ ├── zh-Hans │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ │ └── zh-Hant │ │ │ ├── Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.CSharp.resources.dll │ │ │ ├── Microsoft.CodeAnalysis.Workspaces.resources.dll │ │ │ └── Microsoft.CodeAnalysis.resources.dll │ │ ├── PublishOutputs.a18fae4560.txt │ │ ├── apphost.exe │ │ ├── ref │ │ └── ELearningApi.Api.dll │ │ ├── refint │ │ └── ELearningApi.Api.dll │ │ ├── staticwebassets.build.json │ │ ├── staticwebassets.publish.json │ │ └── staticwebassets │ │ ├── msbuild.build.ELearningApi.Api.props │ │ ├── msbuild.buildMultiTargeting.ELearningApi.Api.props │ │ └── msbuild.buildTransitive.ELearningApi.Api.props │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info ├── ELearningApi.Core ├── Base │ ├── ApiResponse │ │ ├── ApiResponse.cs │ │ ├── ApiResponseHandler.cs │ │ └── PagedList.cs │ └── MiddleWare │ │ ├── ErrorHandlerMiddleware.cs │ │ └── ValidationBehavior.cs ├── ELearningApi.Core.csproj ├── MediatrHandlers │ ├── Auth │ │ ├── AuthMappingProfile.cs │ │ ├── AuthResultDto.cs │ │ ├── ChangePassword │ │ │ ├── ChangePasswordCommand.cs │ │ │ ├── ChangePasswordCommandHandler.cs │ │ │ └── ChangePasswordCommandValidator.cs │ │ ├── ConfirmEmail │ │ │ ├── ConfirmEmailCommand.cs │ │ │ ├── ConfirmEmailCommandHandler.cs │ │ │ └── ConfirmEmailCommandValidator.cs │ │ ├── ForgotPassword │ │ │ ├── ForgotPasswordCommand.cs │ │ │ ├── ForgotPasswordCommandHandler.cs │ │ │ └── ForgotPasswordCommandValidator.cs │ │ ├── Login │ │ │ ├── LoginCommand.cs │ │ │ ├── LoginCommandHandler.cs │ │ │ └── LoginCommandValidator.cs │ │ ├── RefreshToken │ │ │ ├── RefreshTokenCommand.cs │ │ │ ├── RefreshTokenCommandHandler.cs │ │ │ └── RefreshTokenCommandValidator.cs │ │ ├── RegisterInstructor │ │ │ ├── RegisterInstructorCommand.cs │ │ │ ├── RegisterInstructorCommandHandler.cs │ │ │ └── RegisterInstructorCommandValidator.cs │ │ ├── RegisterStudent │ │ │ ├── RegisterStudentCommand.cs │ │ │ ├── RegisterStudentCommandHandler.cs │ │ │ └── RegisterStudentCommandValidator.cs │ │ ├── ResendEmailConfirmation │ │ │ ├── ResendEmailConfirmationCommand.cs │ │ │ ├── ResendEmailConfirmationCommandHandler.cs │ │ │ └── ResendEmailConfirmationCommandValidator.cs │ │ ├── ResetPassword │ │ │ ├── ResetPasswordCommand.cs │ │ │ ├── ResetPasswordCommandHandler.cs │ │ │ └── ResetPasswordCommandValidator.cs │ │ └── RevokeToken │ │ │ ├── RevokeTokenCommand.cs │ │ │ ├── RevokeTokenCommandHandler.cs │ │ │ └── RevokeTokenCommandValidator.cs │ ├── Category │ │ ├── CategoryDto.cs │ │ ├── CategoryMappingProfile.cs │ │ ├── Commands │ │ │ ├── CreateCategory │ │ │ │ ├── CreateCategoryCommand.cs │ │ │ │ ├── CreateCategoryCommandHandler.cs │ │ │ │ └── CreateCategoryCommandValidator.cs │ │ │ ├── DeleteCategory │ │ │ │ ├── DeleteCategoryCommand.cs │ │ │ │ ├── DeleteCategoryCommandHandler.cs │ │ │ │ └── DeleteCategoryValidator.cs │ │ │ └── UpdateCategory │ │ │ │ ├── UpdateCategoryCommand.cs │ │ │ │ ├── UpdateCategoryCommandHandler.cs │ │ │ │ └── UpdateCategoryCommandValidator.cs │ │ └── Queries │ │ │ ├── GetAllCategories │ │ │ ├── GetAllCategoriesQuery.cs │ │ │ └── GetAllCategoriesQueryHandler.cs │ │ │ └── GetCategoryById │ │ │ ├── GetCategoryByIdQuery.cs │ │ │ ├── GetCategoryByIdQueryHandler.cs │ │ │ └── GetCategoryByIdQueryValidator.cs │ ├── Course │ │ ├── Commands │ │ │ ├── CreateCourse │ │ │ │ ├── CreateCourseCommand.cs │ │ │ │ ├── CreateCourseCommandHandler.cs │ │ │ │ └── CreateCourseCommandValidator.cs │ │ │ ├── DeleteCourse │ │ │ │ ├── DeleteCourseCommand.cs │ │ │ │ ├── DeleteCourseCommandHandler.cs │ │ │ │ └── DeleteCourseCommandValidator.cs │ │ │ └── UpdateCourse │ │ │ │ ├── UpdateCourseCommand.cs │ │ │ │ ├── UpdateCourseCommandHandler.cs │ │ │ │ └── UpdateCourseCommandValidator.cs │ │ ├── CourseDto.cs │ │ ├── CourseMappingProfile.cs │ │ └── Queries │ │ │ ├── GetCourseById │ │ │ ├── GetCourseByIdQuery.cs │ │ │ ├── GetCourseByIdQueryHandler.cs │ │ │ └── GetCourseByIdQueryValidator.cs │ │ │ ├── GetCourseRating │ │ │ ├── GetCourseRatingQuery.cs │ │ │ ├── GetCourseRatingQueryHandler.cs │ │ │ └── GetCourseRatingQueryValidator.cs │ │ │ ├── GetCoursesByCategory │ │ │ ├── GetCoursesByCategoryQuery.cs │ │ │ ├── GetCoursesByCategoryQueryHandler.cs │ │ │ └── GetCoursesByCategoryQueryValidator.cs │ │ │ ├── GetCoursesByInstructor │ │ │ ├── GetCoursesByInstructorQuery.cs │ │ │ ├── GetCoursesByInstructorQueryHandler.cs │ │ │ └── GetCoursesByInstructorQueryValidator.cs │ │ │ └── SearchCourses │ │ │ ├── SearchCoursesQuery.cs │ │ │ ├── SearchCoursesQueryHandler.cs │ │ │ ├── SearchCoursesQueryValidator.cs │ │ │ └── SearchCoursesResult.cs │ ├── Enrollment │ │ ├── Commands │ │ │ ├── EnrollStudentInCourse │ │ │ │ ├── EnrollStudentInCourseCommand.cs │ │ │ │ ├── EnrollStudentInCourseCommandHandler.cs │ │ │ │ └── EnrollStudentInCourseCommandValidator.cs │ │ │ ├── UnEnrollStudentFromCourse │ │ │ │ ├── UnEnrollStudentFromCourseCommand.cs │ │ │ │ ├── UnEnrollStudentFromCourseCommandHandler.cs │ │ │ │ └── UnEnrollStudentFromCourseCommandValidator.cs │ │ │ └── UpdateEnrollmentStatus │ │ │ │ ├── UpdateEnrollmentStatusCommand.cs │ │ │ │ ├── UpdateEnrollmentStatusCommandHandler.cs │ │ │ │ └── UpdateEnrollmentStatusCommandValidator.cs │ │ ├── EnrollmentDto.cs │ │ ├── EnrollmentMappingProfile.cs │ │ └── Queries │ │ │ ├── CheckEnrollmentStatus │ │ │ ├── CheckEnrollmentStatusQuery.cs │ │ │ ├── CheckEnrollmentStatusQueryHandler.cs │ │ │ └── CheckEnrollmentStatusQueryValidator.cs │ │ │ ├── GetEnrollmentById │ │ │ ├── GetEnrollmentByIdQuery.cs │ │ │ ├── GetEnrollmentByIdQueryHandler.cs │ │ │ └── GetEnrollmentByIdQueryValidator.cs │ │ │ ├── GetEnrollmentsForCourse │ │ │ ├── GetEnrollmentsForCourseQuery.cs │ │ │ ├── GetEnrollmentsForCourseQueryHandler.cs │ │ │ └── GetEnrollmentsForCourseQueryValidator.cs │ │ │ └── GetEnrollmentsForStudent │ │ │ ├── GetEnrollmentsForStudentQuery.cs │ │ │ ├── GetEnrollmentsForStudentQueryHandler.cs │ │ │ └── GetEnrollmentsForStudentQueryValidator.cs │ ├── Instructor │ │ ├── Commands │ │ │ └── UpdateInstructor │ │ │ │ ├── UpdateInstructorCommand.cs │ │ │ │ ├── UpdateInstructorCommandHandler.cs │ │ │ │ └── UpdateInstructorCommandValidator.cs │ │ ├── InstructorDto.cs │ │ ├── InstructorMappingProfile.cs │ │ └── Queries │ │ │ ├── GetAllInstructors │ │ │ ├── GetAllInstructorsQuery.cs │ │ │ └── GetAllInstructorsQueryHandler.cs │ │ │ └── GetInstructorById │ │ │ ├── GetInstructorByIdQuery.cs │ │ │ ├── GetInstructorByIdQueryHandler.cs │ │ │ └── GetInstructorByIdQueryValidator.cs │ ├── Lecture │ │ ├── Command │ │ │ ├── AddResourceToLecture │ │ │ │ ├── AddResourceToLectureCommand.cs │ │ │ │ ├── AddResourceToLectureCommandHandler.cs │ │ │ │ └── AddResourceToLectureCommandValidator.cs │ │ │ ├── CreateLecture │ │ │ │ ├── CreateLectureCommand.cs │ │ │ │ ├── CreateLectureCommandHandler.cs │ │ │ │ └── CreateLectureCommandValidator.cs │ │ │ ├── DeleteLecture │ │ │ │ ├── DeleteLectureCommand.cs │ │ │ │ ├── DeleteLectureCommandHandler.cs │ │ │ │ └── DeleteLectureCommandValidator.cs │ │ │ ├── RemoveResourceFromLecture │ │ │ │ ├── RemoveResourceFromLectureCommand.cs │ │ │ │ ├── RemoveResourceFromLectureCommandHandler.cs │ │ │ │ └── RemoveResourceFromLectureCommandValidator.cs │ │ │ └── UpdateLecture │ │ │ │ ├── UpdateLectureCommand.cs │ │ │ │ ├── UpdateLectureCommandHandler.cs │ │ │ │ └── UpdateLectureCommandValidator.cs │ │ ├── LectureDto.cs │ │ ├── LectureMappingProfile.cs │ │ ├── LectureResourceDto.cs │ │ └── Queries │ │ │ ├── GetLectureById │ │ │ ├── GetLectureByIdQuery.cs │ │ │ ├── GetLectureByIdQueryHandler.cs │ │ │ └── GetLectureByIdQueryValidator.cs │ │ │ └── GetLecturesForSection │ │ │ ├── GetLecturesForSectionQuery.cs │ │ │ ├── GetLecturesForSectionQueryHandler.cs │ │ │ └── GetLecturesForSectionQueryValidator.cs │ ├── Progress │ │ ├── Commands │ │ │ ├── MarkLectureComplete │ │ │ │ ├── MarkLectureCompleteCommand.cs │ │ │ │ ├── MarkLectureCompleteCommandHandler.cs │ │ │ │ └── MarkLectureCompleteCommandValidator.cs │ │ │ ├── ResetProgress │ │ │ │ ├── ResetProgressCommand.cs │ │ │ │ ├── ResetProgressCommandHandler.cs │ │ │ │ └── ResetProgressCommandValidator.cs │ │ │ └── UpdateProgress │ │ │ │ ├── UpdateProgressCommand.cs │ │ │ │ ├── UpdateProgressCommandHandler.cs │ │ │ │ └── UpdateProgressCommandValidator.cs │ │ ├── ProgressDto.cs │ │ ├── ProgressMappingProfile.cs │ │ └── Queries │ │ │ ├── GetCompletedLectures │ │ │ ├── GetCompletedLecturesQuery.cs │ │ │ ├── GetCompletedLecturesQueryHandler.cs │ │ │ └── GetCompletedLecturesQueryValidator.cs │ │ │ ├── GetOverallCourseProgress │ │ │ ├── GetOverallCourseProgressQuery.cs │ │ │ ├── GetOverallCourseProgressQueryHandler.cs │ │ │ └── GetOverallCourseProgressQueryValidator.cs │ │ │ ├── GetProgressById │ │ │ ├── GetProgressByIdQuery.cs │ │ │ ├── GetProgressByIdQueryHandler.cs │ │ │ └── GetProgressByIdQueryValidator.cs │ │ │ └── GetProgressForEnrollment │ │ │ ├── GetProgressForEnrollmentQuery.cs │ │ │ ├── GetProgressForEnrollmentQueryHandler.cs │ │ │ └── GetProgressForEnrollmentQueryValidator.cs │ ├── Quiz │ │ ├── Commands │ │ │ ├── AddQuestionToQuiz │ │ │ │ ├── AddQuestionToQuizCommand.cs │ │ │ │ ├── AddQuestionToQuizCommandHandler.cs │ │ │ │ └── AddQuestionToQuizCommandValidator.cs │ │ │ ├── CreateQuiz │ │ │ │ ├── CreateQuizCommand.cs │ │ │ │ ├── CreateQuizCommandHandler.cs │ │ │ │ └── CreateQuizCommandValidator.cs │ │ │ ├── DeleteQuiz │ │ │ │ ├── DeleteQuizCommand.cs │ │ │ │ ├── DeleteQuizCommandHandler.cs │ │ │ │ └── DeleteQuizCommandValidator.cs │ │ │ ├── GenerateRandomQuiz │ │ │ │ ├── GenerateRandomQuizCommand.cs │ │ │ │ ├── GenerateRandomQuizCommandHandler.cs │ │ │ │ └── GenerateRandomQuizCommandValidator.cs │ │ │ ├── RemoveQuestionFromQuiz │ │ │ │ ├── RemoveQuestionFromQuizCommand.cs │ │ │ │ ├── RemoveQuestionFromQuizCommandHandler.cs │ │ │ │ └── RemoveQuestionFromQuizCommandValidator.cs │ │ │ ├── UpdateQuestion │ │ │ │ ├── UpdateQuestionCommand.cs │ │ │ │ ├── UpdateQuestionCommandHandler.cs │ │ │ │ └── UpdateQuestionCommandValidator.cs │ │ │ └── UpdateQuiz │ │ │ │ ├── UpdateQuizCommand.cs │ │ │ │ ├── UpdateQuizCommandHandler.cs │ │ │ │ └── UpdateQuizCommandValidator.cs │ │ ├── Queries │ │ │ ├── GetQuizById │ │ │ │ ├── GetQuizByIdQuery.cs │ │ │ │ ├── GetQuizByIdQueryHandler.cs │ │ │ │ └── GetQuizByIdQueryValidator.cs │ │ │ ├── GetQuizzesByCourse │ │ │ │ ├── GetQuizzesByCourseQuery.cs │ │ │ │ ├── GetQuizzesByCourseQueryHandler.cs │ │ │ │ └── GetQuizzesByCourseQueryValidator.cs │ │ │ ├── GetQuizzesByLecture │ │ │ │ ├── GetQuizzesByLectureQuery.cs │ │ │ │ ├── GetQuizzesByLectureQueryHandler.cs │ │ │ │ └── GetQuizzesByLectureQueryValidator.cs │ │ │ └── GetQuizzesBySection │ │ │ │ ├── GetQuizzesBySectionQuery.cs │ │ │ │ ├── GetQuizzesBySectionQueryHandler.cs │ │ │ │ └── GetQuizzesBySectionQueryValidator.cs │ │ ├── QuizAnswerDto.cs │ │ ├── QuizDto.cs │ │ ├── QuizMappingProfile.cs │ │ ├── QuizQuestionDto.cs │ │ └── QuizQuestionMediaDto.cs │ ├── QuizAttempt │ │ ├── AttemptAnswerDto.cs │ │ ├── Commands │ │ │ ├── CalculateQuizScore │ │ │ │ ├── CalculateQuizScoreCommand.cs │ │ │ │ ├── CalculateQuizScoreCommandHandler.cs │ │ │ │ └── CalculateQuizScoreCommandValidator.cs │ │ │ ├── StartQuizAttempt │ │ │ │ ├── StartQuizAttemptCommand.cs │ │ │ │ ├── StartQuizAttemptCommandHandler.cs │ │ │ │ └── StartQuizAttemptCommandValidator.cs │ │ │ └── SubmitQuizAttempt │ │ │ │ ├── SubmitQuizAttemptCommand.cs │ │ │ │ ├── SubmitQuizAttemptCommandHandler.cs │ │ │ │ └── SubmitQuizAttemptCommandValidator.cs │ │ ├── Queries │ │ │ ├── GetQuizAttemptHistory │ │ │ │ ├── GetQuizAttemptHistoryQuery.cs │ │ │ │ ├── GetQuizAttemptHistoryQueryHandler.cs │ │ │ │ └── GetQuizAttemptHistoryQueryValidator.cs │ │ │ ├── GetQuizAttemptResult │ │ │ │ ├── GetQuizAttemptResultQuery.cs │ │ │ │ ├── GetQuizAttemptResultQueryHandler.cs │ │ │ │ └── GetQuizAttemptResultQueryValidator.cs │ │ │ ├── GetQuizAttemptsForQuiz │ │ │ │ ├── GetQuizAttemptsForQuizQuery.cs │ │ │ │ ├── GetQuizAttemptsForQuizQueryHandler.cs │ │ │ │ └── GetQuizAttemptsForQuizQueryValidator.cs │ │ │ └── GetQuizAttemptsForStudent │ │ │ │ ├── GetQuizAttemptsForStudentQuery.cs │ │ │ │ ├── GetQuizAttemptsForStudentQueryHandler.cs │ │ │ │ └── GetQuizAttemptsForStudentQueryValidator.cs │ │ ├── QuizAttemptDto.cs │ │ └── QuizAttemptMappingProfile.cs │ ├── Review │ │ ├── Commands │ │ │ ├── CreateReview │ │ │ │ ├── CreateReviewCommand.cs │ │ │ │ ├── CreateReviewCommandHandler.cs │ │ │ │ └── CreateReviewCommandValidator.cs │ │ │ ├── DeleteReview │ │ │ │ ├── DeleteReviewCommand.cs │ │ │ │ ├── DeleteReviewCommandHandler.cs │ │ │ │ └── DeleteReviewCommandValidator.cs │ │ │ └── UpdateReview │ │ │ │ ├── UpdateReviewCommand.cs │ │ │ │ ├── UpdateReviewCommandHandler.cs │ │ │ │ └── UpdateReviewCommandValidator.cs │ │ ├── Queries │ │ │ ├── GetCourseAverageRating │ │ │ │ ├── GetCourseAverageRatingQuery.cs │ │ │ │ ├── GetCourseAverageRatingQueryHandler.cs │ │ │ │ └── GetCourseAverageRatingQueryValidator.cs │ │ │ ├── GetReviewById │ │ │ │ ├── GetReviewByIdQuery.cs │ │ │ │ ├── GetReviewByIdQueryHandler.cs │ │ │ │ └── GetReviewByIdQueryValidator.cs │ │ │ └── GetReviewsForCourse │ │ │ │ ├── GetReviewsForCourseQuery.cs │ │ │ │ ├── GetReviewsForCourseQueryHandler.cs │ │ │ │ └── GetReviewsForCourseQueryValidator.cs │ │ ├── ReviewDto.cs │ │ └── ReviewMappingProfile.cs │ ├── Search │ │ ├── Dtos │ │ │ ├── CourseDto.cs │ │ │ ├── GlobalSearchResultDto.cs │ │ │ ├── InstructorDto.cs │ │ │ └── LectureDto.cs │ │ ├── GlobalSearch │ │ │ ├── GlobalSearchQuery.cs │ │ │ ├── GlobalSearchQueryHandler.cs │ │ │ └── GlobalSearchQueryValidator.cs │ │ ├── SearchCourses │ │ │ ├── SearchCoursesQuery.cs │ │ │ ├── SearchCoursesQueryHandler.cs │ │ │ └── SearchCoursesQueryValidator.cs │ │ ├── SearchInstructors │ │ │ ├── SearchInstructorsQuery.cs │ │ │ ├── SearchInstructorsQueryHandler.cs │ │ │ └── SearchInstructorsQueryValidator.cs │ │ ├── SearchLectures │ │ │ ├── SearchLecturesQuery.cs │ │ │ ├── SearchLecturesQueryHandler.cs │ │ │ └── SearchLecturesQueryValidator.cs │ │ └── SearchMappingProfile.cs │ ├── Section │ │ ├── Commands │ │ │ ├── CreateSection │ │ │ │ ├── CreateSectionCommand.cs │ │ │ │ ├── CreateSectionCommandHandler.cs │ │ │ │ └── CreateSectionCommandValidator.cs │ │ │ ├── DeleteSection │ │ │ │ ├── DeleteSectionCommand.cs │ │ │ │ ├── DeleteSectionCommandHandler.cs │ │ │ │ └── DeleteSectionCommandValidator.cs │ │ │ └── UpdateSection │ │ │ │ ├── UpdateSectionCommand.cs │ │ │ │ ├── UpdateSectionCommandHandler.cs │ │ │ │ └── UpdateSectionCommandValidator.cs │ │ ├── Queries │ │ │ ├── GetSectionById │ │ │ │ ├── GetSectionByIdQuery.cs │ │ │ │ ├── GetSectionByIdQueryHandler.cs │ │ │ │ └── GetSectionByIdQueryValidator.cs │ │ │ └── GetSectionsForCourse │ │ │ │ ├── GetSectionsForCourseQuery.cs │ │ │ │ ├── GetSectionsForCourseQueryHandler.cs │ │ │ │ └── GetSectionsForCourseQueryValidator.cs │ │ ├── SectionDto.cs │ │ └── SectionMappingProfile.cs │ └── Student │ │ ├── Commands │ │ └── UpdateStudent │ │ │ ├── UpdateStudentCommand.cs │ │ │ ├── UpdateStudentCommandHandler.cs │ │ │ └── UpdateStudentCommandValidator.cs │ │ ├── Queries │ │ ├── GetAllStudents │ │ │ ├── GetAllStudentsQuery.cs │ │ │ └── GetAllStudentsQueryHandler.cs │ │ └── GetStudentById │ │ │ ├── GetStudentByIdQuery.cs │ │ │ ├── GetStudentByIdQueryHandler.cs │ │ │ └── GetStudentByIdQueryValidator.cs │ │ ├── StudentDto.cs │ │ └── StudentMappingProfile.cs ├── ModuleCoreDependencies.cs ├── bin │ ├── Debug │ │ └── net8.0 │ │ │ ├── ELearningApi.Core.deps.json │ │ │ ├── ELearningApi.Core.dll │ │ │ ├── ELearningApi.Core.pdb │ │ │ ├── ELearningApi.Data.dll │ │ │ ├── ELearningApi.Data.pdb │ │ │ ├── ELearningApi.Infrustructure.dll │ │ │ ├── ELearningApi.Infrustructure.pdb │ │ │ ├── ELearningApi.Service.dll │ │ │ └── ELearningApi.Service.pdb │ └── Release │ │ └── net8.0 │ │ ├── ELearningApi.Core.deps.json │ │ ├── ELearningApi.Core.dll │ │ ├── ELearningApi.Core.pdb │ │ ├── ELearningApi.Data.dll │ │ ├── ELearningApi.Data.pdb │ │ ├── ELearningApi.Infrustructure.dll │ │ ├── ELearningApi.Infrustructure.pdb │ │ ├── ELearningApi.Service.dll │ │ └── ELearningApi.Service.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.B4D6C508.Up2Date │ │ ├── ELearningApi.Core.AssemblyInfo.cs │ │ ├── ELearningApi.Core.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Core.GlobalUsings.g.cs │ │ ├── ELearningApi.Core.assets.cache │ │ ├── ELearningApi.Core.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Core.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Core.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Core.dll │ │ ├── ELearningApi.Core.pdb │ │ ├── ref │ │ └── ELearningApi.Core.dll │ │ └── refint │ │ └── ELearningApi.Core.dll │ ├── ELearningApi.Core.csproj.nuget.dgspec.json │ ├── ELearningApi.Core.csproj.nuget.g.props │ ├── ELearningApi.Core.csproj.nuget.g.targets │ ├── Release │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.B4D6C508.Up2Date │ │ ├── ELearningApi.Core.AssemblyInfo.cs │ │ ├── ELearningApi.Core.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Core.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Core.GlobalUsings.g.cs │ │ ├── ELearningApi.Core.assets.cache │ │ ├── ELearningApi.Core.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Core.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Core.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Core.dll │ │ ├── ELearningApi.Core.pdb │ │ ├── ref │ │ └── ELearningApi.Core.dll │ │ └── refint │ │ └── ELearningApi.Core.dll │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info ├── ELearningApi.Data ├── ELearningApi.Data.csproj ├── Entities │ ├── ApplicationUser.cs │ ├── AttemptAnswer.cs │ ├── Category.cs │ ├── Course.cs │ ├── Enrollment.cs │ ├── Instructor.cs │ ├── Lecture.cs │ ├── LectureResource.cs │ ├── Payment.cs │ ├── Progress.cs │ ├── Quiz.cs │ ├── QuizAnswer.cs │ ├── QuizAttempt.cs │ ├── QuizQuestion.cs │ ├── QuizQuestionMedia.cs │ ├── Review.cs │ ├── Section.cs │ ├── Student.cs │ └── all.cs ├── Enums │ ├── CourseLevel.cs │ ├── EnrollmentStatus.cs │ ├── LectureType.cs │ ├── MediaType.cs │ ├── PaymentStatus.cs │ ├── ProgressStatus.cs │ ├── QuestionType.cs │ ├── QuizType.cs │ └── ResourceType.cs ├── bin │ ├── Debug │ │ └── net8.0 │ │ │ ├── ELearningApi.Data.deps.json │ │ │ ├── ELearningApi.Data.dll │ │ │ └── ELearningApi.Data.pdb │ └── Release │ │ └── net8.0 │ │ ├── ELearningApi.Data.deps.json │ │ ├── ELearningApi.Data.dll │ │ └── ELearningApi.Data.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearningApi.Data.AssemblyInfo.cs │ │ ├── ELearningApi.Data.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Data.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Data.GlobalUsings.g.cs │ │ ├── ELearningApi.Data.assets.cache │ │ ├── ELearningApi.Data.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Data.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Data.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Data.dll │ │ ├── ELearningApi.Data.pdb │ │ ├── ref │ │ └── ELearningApi.Data.dll │ │ └── refint │ │ └── ELearningApi.Data.dll │ ├── ELearningApi.Data.csproj.nuget.dgspec.json │ ├── ELearningApi.Data.csproj.nuget.g.props │ ├── ELearningApi.Data.csproj.nuget.g.targets │ ├── Release │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearningApi.Data.AssemblyInfo.cs │ │ ├── ELearningApi.Data.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Data.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Data.GlobalUsings.g.cs │ │ ├── ELearningApi.Data.assets.cache │ │ ├── ELearningApi.Data.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Data.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Data.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Data.dll │ │ ├── ELearningApi.Data.pdb │ │ ├── ref │ │ └── ELearningApi.Data.dll │ │ └── refint │ │ └── ELearningApi.Data.dll │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info ├── ELearningApi.Infrustructure ├── Base │ ├── GenericRepository.cs │ ├── IGenericRepository.cs │ ├── ISpecification.cs │ ├── IUnitOfWork.cs │ ├── Specification.cs │ └── UnitOfWork.cs ├── Configurations │ ├── ApplicationUserConfiguration.cs │ ├── AttemptAnswerConfiguration.cs │ ├── CategoryConfiguration.cs │ ├── CourseConfiguration.cs │ ├── EnrollmentConfiguration.cs │ ├── InstructorConfiguration.cs │ ├── LectureConfiguration.cs │ ├── LectureResourceConfiguration.cs │ ├── PaymentConfiguration.cs │ ├── ProgressConfiguration.cs │ ├── QuizAnswerConfiguration.cs │ ├── QuizAttemptConfiguration.cs │ ├── QuizConfiguration.cs │ ├── QuizQuestionConfiguration.cs │ ├── QuizQuestionMediaConfiguration.cs │ ├── ReviewConfiguration.cs │ ├── SectionConfiguration.cs │ └── StudentConfiguration.cs ├── Context │ └── ApplicationDbContext.cs ├── ELearningApi.Infrustructure.csproj ├── Migrations │ ├── 20240929094117_init.Designer.cs │ ├── 20240929094117_init.cs │ ├── 20240929110116_init1.Designer.cs │ ├── 20240929110116_init1.cs │ └── ApplicationDbContextModelSnapshot.cs ├── ModuleInfrastructureDependencies.cs ├── bin │ ├── Debug │ │ └── net8.0 │ │ │ ├── ELearningApi.Data.dll │ │ │ ├── ELearningApi.Data.pdb │ │ │ ├── ELearningApi.Infrustructure.deps.json │ │ │ ├── ELearningApi.Infrustructure.dll │ │ │ ├── ELearningApi.Infrustructure.pdb │ │ │ └── ELearningApi.Infrustructure.runtimeconfig.json │ └── Release │ │ └── net8.0 │ │ ├── ELearningApi.Data.dll │ │ ├── ELearningApi.Data.pdb │ │ ├── ELearningApi.Infrustructure.deps.json │ │ ├── ELearningApi.Infrustructure.dll │ │ ├── ELearningApi.Infrustructure.pdb │ │ └── ELearningApi.Infrustructure.runtimeconfig.json └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.A21C9E20.Up2Date │ │ ├── ELearningApi.Infrustructure.AssemblyInfo.cs │ │ ├── ELearningApi.Infrustructure.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Infrustructure.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Infrustructure.GlobalUsings.g.cs │ │ ├── ELearningApi.Infrustructure.assets.cache │ │ ├── ELearningApi.Infrustructure.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Infrustructure.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Infrustructure.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Infrustructure.dll │ │ ├── ELearningApi.Infrustructure.genruntimeconfig.cache │ │ ├── ELearningApi.Infrustructure.pdb │ │ ├── ref │ │ └── ELearningApi.Infrustructure.dll │ │ └── refint │ │ └── ELearningApi.Infrustructure.dll │ ├── ELearningApi.Infrustructure.csproj.EntityFrameworkCore.targets │ ├── ELearningApi.Infrustructure.csproj.nuget.dgspec.json │ ├── ELearningApi.Infrustructure.csproj.nuget.g.props │ ├── ELearningApi.Infrustructure.csproj.nuget.g.targets │ ├── Release │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.A21C9E20.Up2Date │ │ ├── ELearningApi.Infrustructure.AssemblyInfo.cs │ │ ├── ELearningApi.Infrustructure.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Infrustructure.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Infrustructure.GlobalUsings.g.cs │ │ ├── ELearningApi.Infrustructure.assets.cache │ │ ├── ELearningApi.Infrustructure.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Infrustructure.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Infrustructure.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Infrustructure.dll │ │ ├── ELearningApi.Infrustructure.genruntimeconfig.cache │ │ ├── ELearningApi.Infrustructure.pdb │ │ ├── ref │ │ └── ELearningApi.Infrustructure.dll │ │ └── refint │ │ └── ELearningApi.Infrustructure.dll │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info ├── ELearningApi.Service ├── Base │ └── AuthResult.cs ├── ELearningApi.Service.csproj ├── IService │ ├── IAuthService.cs │ ├── ICategoryService.cs │ ├── ICourseService.cs │ ├── IEmailService.cs │ ├── IEnrollmentService.cs │ ├── IInstructorService.cs │ ├── ILectureService.cs │ ├── IPaymentService.cs │ ├── IProgressService.cs │ ├── IQuizAttemptService.cs │ ├── IQuizService.cs │ ├── IReviewService.cs │ ├── ISearchService.cs │ ├── ISectionService.cs │ ├── IStudentService.cs │ └── ITokenService.cs ├── ModuleServiceDependencies.cs ├── Service │ ├── AuthService.cs │ ├── CategoryService.cs │ ├── CourseService.cs │ ├── EmailService.cs │ ├── EnrollmentService.cs │ ├── InstructorService.cs │ ├── LectureService.cs │ ├── PaymentService.cs │ ├── ProgressService.cs │ ├── QuizAttemptService.cs │ ├── QuizService.cs │ ├── ReviewService.cs │ ├── SearchService.cs │ ├── SectionService.cs │ ├── StudentService.cs │ └── TokenService.cs ├── bin │ ├── Debug │ │ └── net8.0 │ │ │ ├── ELearningApi.Data.dll │ │ │ ├── ELearningApi.Data.pdb │ │ │ ├── ELearningApi.Infrustructure.dll │ │ │ ├── ELearningApi.Infrustructure.pdb │ │ │ ├── ELearningApi.Service.deps.json │ │ │ ├── ELearningApi.Service.dll │ │ │ └── ELearningApi.Service.pdb │ └── Release │ │ └── net8.0 │ │ ├── ELearningApi.Data.dll │ │ ├── ELearningApi.Data.pdb │ │ ├── ELearningApi.Infrustructure.dll │ │ ├── ELearningApi.Infrustructure.pdb │ │ ├── ELearningApi.Service.deps.json │ │ ├── ELearningApi.Service.dll │ │ └── ELearningApi.Service.pdb └── obj │ ├── Debug │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.5E4847FE.Up2Date │ │ ├── ELearningApi.Service.AssemblyInfo.cs │ │ ├── ELearningApi.Service.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Service.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Service.GlobalUsings.g.cs │ │ ├── ELearningApi.Service.assets.cache │ │ ├── ELearningApi.Service.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Service.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Service.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Service.dll │ │ ├── ELearningApi.Service.pdb │ │ ├── ref │ │ └── ELearningApi.Service.dll │ │ └── refint │ │ └── ELearningApi.Service.dll │ ├── ELearningApi.Service.csproj.nuget.dgspec.json │ ├── ELearningApi.Service.csproj.nuget.g.props │ ├── ELearningApi.Service.csproj.nuget.g.targets │ ├── Release │ └── net8.0 │ │ ├── .NETCoreApp,Version=v8.0.AssemblyAttributes.cs │ │ ├── ELearnin.5E4847FE.Up2Date │ │ ├── ELearningApi.Service.AssemblyInfo.cs │ │ ├── ELearningApi.Service.AssemblyInfoInputs.cache │ │ ├── ELearningApi.Service.GeneratedMSBuildEditorConfig.editorconfig │ │ ├── ELearningApi.Service.GlobalUsings.g.cs │ │ ├── ELearningApi.Service.assets.cache │ │ ├── ELearningApi.Service.csproj.AssemblyReference.cache │ │ ├── ELearningApi.Service.csproj.CoreCompileInputs.cache │ │ ├── ELearningApi.Service.csproj.FileListAbsolute.txt │ │ ├── ELearningApi.Service.dll │ │ ├── ELearningApi.Service.pdb │ │ ├── ref │ │ └── ELearningApi.Service.dll │ │ └── refint │ │ └── ELearningApi.Service.dll │ ├── project.assets.json │ ├── project.nuget.cache │ ├── project.packagespec.json │ ├── rider.project.model.nuget.info │ └── rider.project.restore.info ├── ELearningApi.sln ├── ELearningApi.sln.DotSettings.user ├── My diagram.svg └── README.md /.idea/.idea.ELearningApi/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.idea/.idea.ELearningApi/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.ELearningApi/.idea/aws.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.idea/.idea.ELearningApi/.idea/aws.xml -------------------------------------------------------------------------------- /.idea/.idea.ELearningApi/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.idea/.idea.ELearningApi/.idea/indexLayout.xml -------------------------------------------------------------------------------- /.idea/.idea.ELearningApi/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.idea/.idea.ELearningApi/.idea/vcs.xml -------------------------------------------------------------------------------- /.vs/ELearningApi/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.vs/ELearningApi/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/ELearningApi/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.vs/ELearningApi/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/ELearningApi/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.vs/ELearningApi/v17/.suo -------------------------------------------------------------------------------- /.vs/ELearningApi/v17/DocumentLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.vs/ELearningApi/v17/DocumentLayout.json -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/elearningapi.metadata.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.vs/ProjectEvaluation/elearningapi.metadata.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/elearningapi.projects.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.vs/ProjectEvaluation/elearningapi.projects.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/elearningapi.strings.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/.vs/ProjectEvaluation/elearningapi.strings.v8.bin -------------------------------------------------------------------------------- /ELearningApi.Api/Base/AppControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Base/AppControllerBase.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/AuthController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/AuthController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/CategoryController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/CategoryController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/CourseController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/CourseController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/EnrollmentController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/EnrollmentController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/InstructorsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/InstructorsController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/LectureController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/LectureController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/ProgressController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/ProgressController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/QuizAttemptController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/QuizAttemptController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/QuizController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/QuizController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/ReviewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/ReviewController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/SearchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/SearchController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/SectionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/SectionController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/StudentsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/StudentsController.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Controllers/allcontroller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Controllers/allcontroller.cs -------------------------------------------------------------------------------- /ELearningApi.Api/DataScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/DataScript.sql -------------------------------------------------------------------------------- /ELearningApi.Api/ELearningApi.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/ELearningApi.Api.csproj -------------------------------------------------------------------------------- /ELearningApi.Api/ELearningApi.Api.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/ELearningApi.Api.csproj.user -------------------------------------------------------------------------------- /ELearningApi.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Program.cs -------------------------------------------------------------------------------- /ELearningApi.Api/Properties/PublishProfiles/site9191-WebDeploy.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Properties/PublishProfiles/site9191-WebDeploy.pubxml -------------------------------------------------------------------------------- /ELearningApi.Api/Properties/PublishProfiles/site9191-WebDeploy.pubxml.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Properties/PublishProfiles/site9191-WebDeploy.pubxml.user -------------------------------------------------------------------------------- /ELearningApi.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /ELearningApi.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/appsettings.Development.json -------------------------------------------------------------------------------- /ELearningApi.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/appsettings.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/ELearningApi.Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/ELearningApi.Api.xml -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/AutoMapper.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Azure.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Azure.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Azure.Identity.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/BouncyCastle.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.deps.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.exe -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.runtimeconfig.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.xml -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Core.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/FluentValidation.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/FluentValidation.AspNetCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/FluentValidation.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Humanizer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/MailKit.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/MediatR.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/MediatR.Contracts.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/MediatR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/MediatR.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Localization.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Localization.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/MimeKit.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Otp.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Otp.NET.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Serilog.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/StoredProcedureEFCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/StoredProcedureEFCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Annotations.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.CodeDom.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Memory.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Text.Json.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/appsettings.Development.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/appsettings.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/ELearningApi.Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/ELearningApi.Api.xml -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/AutoMapper.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Azure.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Azure.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Azure.Identity.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/BouncyCastle.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.deps.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.exe -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.runtimeconfig.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.xml -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Core.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/FluentValidation.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/FluentValidation.AspNetCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/FluentValidation.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Humanizer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/MailKit.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/MediatR.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/MediatR.Contracts.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/MediatR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/MediatR.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.SqlServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.SqlServer.Server.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/MimeKit.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Otp.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Otp.NET.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Serilog.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/StoredProcedureEFCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/StoredProcedureEFCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.Annotations.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.CodeDom.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Composition.Convention.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Memory.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Security.Permissions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Text.Json.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/appsettings.Development.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/appsettings.json -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearnin.4D4BEB5F.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.genruntimeconfig.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/apphost.exe -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ref/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/ref/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/refint/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/refint/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Debug/net8.0/staticwebassets.build.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/ELearningApi.Api.csproj.EntityFrameworkCore.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/ELearningApi.Api.csproj.EntityFrameworkCore.targets -------------------------------------------------------------------------------- /ELearningApi.Api/obj/ELearningApi.Api.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/ELearningApi.Api.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/ELearningApi.Api.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/ELearningApi.Api.csproj.nuget.g.props -------------------------------------------------------------------------------- /ELearningApi.Api/obj/ELearningApi.Api.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/ELearningApi.Api.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearnin.4D4BEB5F.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.deps.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.genpublishdeps.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.genpublishdeps.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.genruntimeconfig.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/ELearningApi.Api.Parameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/ELearningApi.Api.Parameters.xml -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/ELearningApi.Api.SourceManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/ELearningApi.Api.SourceManifest.xml -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/AutoMapper.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Azure.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Azure.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Azure.Identity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Azure.Identity.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/BouncyCastle.Cryptography.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.deps.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.exe -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.runtimeconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.runtimeconfig.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.xml -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Core.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.AspNetCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.AspNetCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Humanizer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Humanizer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MailKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MailKit.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MediatR.Contracts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MediatR.Contracts.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MediatR.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MediatR.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.OpenApi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.OpenApi.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.SqlServer.Server.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.SqlServer.Server.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MimeKit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MimeKit.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Mono.TextTemplating.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Mono.TextTemplating.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Otp.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Otp.NET.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Serilog.Extensions.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Serilog.Extensions.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Serilog.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Serilog.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/StoredProcedureEFCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/StoredProcedureEFCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.CodeDom.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.CodeDom.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.Convention.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Formats.Asn1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Formats.Asn1.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.IdentityModel.Tokens.Jwt.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Memory.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Memory.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Security.Permissions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Text.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Text.Json.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/appsettings.Development.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/appsettings.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/web.config -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PublishOutputs.a18fae4560.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/PublishOutputs.a18fae4560.txt -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/apphost.exe -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ref/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/ref/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/refint/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/refint/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/staticwebassets.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/staticwebassets.build.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/staticwebassets.publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/Release/net8.0/staticwebassets.publish.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/project.assets.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/project.nuget.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Api/obj/project.packagespec.json -------------------------------------------------------------------------------- /ELearningApi.Api/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885879451 -------------------------------------------------------------------------------- /ELearningApi.Api/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885879451 -------------------------------------------------------------------------------- /ELearningApi.Core/Base/ApiResponse/ApiResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/Base/ApiResponse/ApiResponse.cs -------------------------------------------------------------------------------- /ELearningApi.Core/Base/ApiResponse/ApiResponseHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/Base/ApiResponse/ApiResponseHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/Base/ApiResponse/PagedList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/Base/ApiResponse/PagedList.cs -------------------------------------------------------------------------------- /ELearningApi.Core/Base/MiddleWare/ErrorHandlerMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/Base/MiddleWare/ErrorHandlerMiddleware.cs -------------------------------------------------------------------------------- /ELearningApi.Core/Base/MiddleWare/ValidationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/Base/MiddleWare/ValidationBehavior.cs -------------------------------------------------------------------------------- /ELearningApi.Core/ELearningApi.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/ELearningApi.Core.csproj -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/AuthMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/AuthMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/AuthResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/AuthResultDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/ChangePassword/ChangePasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/ChangePassword/ChangePasswordCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/ConfirmEmail/ConfirmEmailCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/ConfirmEmail/ConfirmEmailCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/ConfirmEmail/ConfirmEmailCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/ConfirmEmail/ConfirmEmailCommandHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/ConfirmEmail/ConfirmEmailCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/ConfirmEmail/ConfirmEmailCommandValidator.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/ForgotPassword/ForgotPasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/ForgotPassword/ForgotPasswordCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/Login/LoginCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/Login/LoginCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/Login/LoginCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/Login/LoginCommandHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/Login/LoginCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/Login/LoginCommandValidator.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/RefreshToken/RefreshTokenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/RefreshToken/RefreshTokenCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/RefreshToken/RefreshTokenCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/RefreshToken/RefreshTokenCommandHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/RefreshToken/RefreshTokenCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/RefreshToken/RefreshTokenCommandValidator.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/RegisterStudent/RegisterStudentCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/RegisterStudent/RegisterStudentCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/ResetPassword/ResetPasswordCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/ResetPassword/ResetPasswordCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/ResetPassword/ResetPasswordCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/ResetPassword/ResetPasswordCommandHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/RevokeToken/RevokeTokenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/RevokeToken/RevokeTokenCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/RevokeToken/RevokeTokenCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/RevokeToken/RevokeTokenCommandHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/RevokeToken/RevokeTokenCommandValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Auth/RevokeToken/RevokeTokenCommandValidator.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Category/CategoryDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Category/CategoryDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Category/CategoryMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Category/CategoryMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Course/CourseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Course/CourseDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Course/CourseMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Course/CourseMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Enrollment/EnrollmentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Enrollment/EnrollmentDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Enrollment/EnrollmentMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Enrollment/EnrollmentMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Instructor/InstructorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Instructor/InstructorDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Instructor/InstructorMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Instructor/InstructorMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Lecture/LectureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Lecture/LectureDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Lecture/LectureMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Lecture/LectureMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Lecture/LectureResourceDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Lecture/LectureResourceDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Progress/ProgressDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Progress/ProgressDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Progress/ProgressMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Progress/ProgressMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/Commands/CreateQuiz/CreateQuizCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/Commands/CreateQuiz/CreateQuizCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/Commands/DeleteQuiz/DeleteQuizCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/Commands/DeleteQuiz/DeleteQuizCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/Commands/UpdateQuiz/UpdateQuizCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/Commands/UpdateQuiz/UpdateQuizCommand.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/Queries/GetQuizById/GetQuizByIdQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/Queries/GetQuizById/GetQuizByIdQuery.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/QuizAnswerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/QuizAnswerDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/QuizDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/QuizDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/QuizMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/QuizMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/QuizQuestionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/QuizQuestionDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Quiz/QuizQuestionMediaDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Quiz/QuizQuestionMediaDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/QuizAttempt/AttemptAnswerDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/QuizAttempt/AttemptAnswerDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/QuizAttempt/QuizAttemptDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/QuizAttempt/QuizAttemptDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/QuizAttempt/QuizAttemptMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/QuizAttempt/QuizAttemptMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Review/ReviewDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Review/ReviewDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Review/ReviewMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Review/ReviewMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/Dtos/CourseDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/Dtos/CourseDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/Dtos/GlobalSearchResultDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/Dtos/GlobalSearchResultDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/Dtos/InstructorDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/Dtos/InstructorDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/Dtos/LectureDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/Dtos/LectureDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/GlobalSearch/GlobalSearchQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/GlobalSearch/GlobalSearchQuery.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/GlobalSearch/GlobalSearchQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/GlobalSearch/GlobalSearchQueryHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/GlobalSearch/GlobalSearchQueryValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/GlobalSearch/GlobalSearchQueryValidator.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/SearchCourses/SearchCoursesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/SearchCourses/SearchCoursesQuery.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/SearchCourses/SearchCoursesQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/SearchCourses/SearchCoursesQueryHandler.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/SearchLectures/SearchLecturesQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/SearchLectures/SearchLecturesQuery.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Search/SearchMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Search/SearchMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Section/SectionDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Section/SectionDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Section/SectionMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Section/SectionMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Student/StudentDto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Student/StudentDto.cs -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Student/StudentMappingProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/MediatrHandlers/Student/StudentMappingProfile.cs -------------------------------------------------------------------------------- /ELearningApi.Core/ModuleCoreDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/ModuleCoreDependencies.cs -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Core.deps.json -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Core.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Core.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Core.deps.json -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Core.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearnin.B4D6C508.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ref/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/ref/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/refint/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Debug/net8.0/refint/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/ELearningApi.Core.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/ELearningApi.Core.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ELearningApi.Core/obj/ELearningApi.Core.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/ELearningApi.Core.csproj.nuget.g.props -------------------------------------------------------------------------------- /ELearningApi.Core/obj/ELearningApi.Core.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/ELearningApi.Core.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearnin.B4D6C508.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ref/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/ref/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/refint/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/Release/net8.0/refint/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/project.assets.json -------------------------------------------------------------------------------- /ELearningApi.Core/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/project.nuget.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Core/obj/project.packagespec.json -------------------------------------------------------------------------------- /ELearningApi.Core/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885849426 -------------------------------------------------------------------------------- /ELearningApi.Core/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885849426 -------------------------------------------------------------------------------- /ELearningApi.Data/ELearningApi.Data.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/ELearningApi.Data.csproj -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/ApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/ApplicationUser.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/AttemptAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/AttemptAnswer.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Category.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Category.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Course.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Course.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Enrollment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Enrollment.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Instructor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Instructor.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Lecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Lecture.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/LectureResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/LectureResource.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Payment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Payment.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Progress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Progress.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Quiz.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Quiz.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/QuizAnswer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/QuizAnswer.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/QuizAttempt.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/QuizAttempt.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/QuizQuestion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/QuizQuestion.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/QuizQuestionMedia.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/QuizQuestionMedia.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Review.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Review.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Section.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Section.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Student.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/Student.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/all.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Entities/all.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/CourseLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/CourseLevel.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/EnrollmentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/EnrollmentStatus.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/LectureType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/LectureType.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/MediaType.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | public enum MediaType { Image, Audio, Video } 4 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/PaymentStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/PaymentStatus.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/ProgressStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/ProgressStatus.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/QuestionType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/QuestionType.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/QuizType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/QuizType.cs -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/ResourceType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/Enums/ResourceType.cs -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.deps.json -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.deps.json -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.CoreCompileInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ref/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/ref/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/refint/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Debug/net8.0/refint/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/ELearningApi.Data.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/ELearningApi.Data.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ELearningApi.Data/obj/ELearningApi.Data.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/ELearningApi.Data.csproj.nuget.g.props -------------------------------------------------------------------------------- /ELearningApi.Data/obj/ELearningApi.Data.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/ELearningApi.Data.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ref/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/ref/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/refint/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/Release/net8.0/refint/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/project.assets.json -------------------------------------------------------------------------------- /ELearningApi.Data/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/project.nuget.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Data/obj/project.packagespec.json -------------------------------------------------------------------------------- /ELearningApi.Data/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885859434 -------------------------------------------------------------------------------- /ELearningApi.Data/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885859434 -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Base/GenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Base/GenericRepository.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Base/IGenericRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Base/IGenericRepository.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Base/ISpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Base/ISpecification.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Base/IUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Base/IUnitOfWork.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Base/Specification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Base/Specification.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Base/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Base/UnitOfWork.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/ApplicationUserConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/ApplicationUserConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/AttemptAnswerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/AttemptAnswerConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/CategoryConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/CategoryConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/CourseConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/CourseConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/EnrollmentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/EnrollmentConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/InstructorConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/InstructorConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/LectureConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/LectureConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/LectureResourceConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/LectureResourceConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/PaymentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/PaymentConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/ProgressConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/ProgressConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/QuizAnswerConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/QuizAnswerConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/QuizAttemptConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/QuizAttemptConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/QuizConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/QuizConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/QuizQuestionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/QuizQuestionConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/QuizQuestionMediaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/QuizQuestionMediaConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/ReviewConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/ReviewConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/SectionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/SectionConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Configurations/StudentConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Configurations/StudentConfiguration.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Context/ApplicationDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Context/ApplicationDbContext.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/ELearningApi.Infrustructure.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/ELearningApi.Infrustructure.csproj -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Migrations/20240929094117_init.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Migrations/20240929094117_init.Designer.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Migrations/20240929094117_init.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Migrations/20240929094117_init.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Migrations/20240929110116_init1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Migrations/20240929110116_init1.Designer.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Migrations/20240929110116_init1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Migrations/20240929110116_init1.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/Migrations/ApplicationDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/Migrations/ApplicationDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/ModuleInfrastructureDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/ModuleInfrastructureDependencies.cs -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Infrustructure.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Infrustructure.deps.json -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearnin.A21C9E20.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ref/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/Debug/net8.0/ref/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/refint/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/Debug/net8.0/refint/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/ELearningApi.Infrustructure.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/ELearningApi.Infrustructure.csproj.nuget.g.props -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/ELearningApi.Infrustructure.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/ELearningApi.Infrustructure.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearnin.A21C9E20.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ref/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/Release/net8.0/ref/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/project.assets.json -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/project.nuget.cache -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Infrustructure/obj/project.packagespec.json -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 -------------------------------------------------------------------------------- /ELearningApi.Service/Base/AuthResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Base/AuthResult.cs -------------------------------------------------------------------------------- /ELearningApi.Service/ELearningApi.Service.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/ELearningApi.Service.csproj -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IAuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IAuthService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/ICategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/ICategoryService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/ICourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/ICourseService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IEmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IEmailService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IEnrollmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IEnrollmentService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IInstructorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IInstructorService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/ILectureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/ILectureService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IPaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IPaymentService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IProgressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IProgressService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IQuizAttemptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IQuizAttemptService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IQuizService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IQuizService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IReviewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IReviewService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/ISearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/ISearchService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/ISectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/ISectionService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IStudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/IStudentService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/IService/ITokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/IService/ITokenService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/ModuleServiceDependencies.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/ModuleServiceDependencies.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/AuthService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/AuthService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/CategoryService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/CategoryService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/CourseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/CourseService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/EmailService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/EmailService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/EnrollmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/EnrollmentService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/InstructorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/InstructorService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/LectureService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/LectureService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/PaymentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/PaymentService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/ProgressService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/ProgressService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/QuizAttemptService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/QuizAttemptService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/QuizService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/QuizService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/ReviewService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/ReviewService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/SearchService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/SearchService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/SectionService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/SectionService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/StudentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/StudentService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/Service/TokenService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/Service/TokenService.cs -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Service.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Service.deps.json -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Data.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.deps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.deps.json -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearnin.5E4847FE.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.AssemblyInfoInputs.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ref/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/ref/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/refint/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Debug/net8.0/refint/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/ELearningApi.Service.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/ELearningApi.Service.csproj.nuget.dgspec.json -------------------------------------------------------------------------------- /ELearningApi.Service/obj/ELearningApi.Service.csproj.nuget.g.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/ELearningApi.Service.csproj.nuget.g.props -------------------------------------------------------------------------------- /ELearningApi.Service/obj/ELearningApi.Service.csproj.nuget.g.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/ELearningApi.Service.csproj.nuget.g.targets -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearnin.5E4847FE.Up2Date: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.AssemblyInfo.cs -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.GlobalUsings.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.GlobalUsings.g.cs -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ref/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Release/net8.0/ref/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/refint/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/Release/net8.0/refint/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/project.assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/project.assets.json -------------------------------------------------------------------------------- /ELearningApi.Service/obj/project.nuget.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/project.nuget.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/project.packagespec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.Service/obj/project.packagespec.json -------------------------------------------------------------------------------- /ELearningApi.Service/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 -------------------------------------------------------------------------------- /ELearningApi.Service/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 -------------------------------------------------------------------------------- /ELearningApi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.sln -------------------------------------------------------------------------------- /ELearningApi.sln.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/ELearningApi.sln.DotSettings.user -------------------------------------------------------------------------------- /My diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/My diagram.svg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/HEAD/README.md --------------------------------------------------------------------------------