├── .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/indexLayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/.idea.ELearningApi/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.vs/ELearningApi/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/.vs/ELearningApi/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /.vs/ELearningApi/v17/.futdcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/.vs/ELearningApi/v17/.futdcache.v2 -------------------------------------------------------------------------------- /.vs/ELearningApi/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/.vs/ELearningApi/v17/.suo -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/elearningapi.metadata.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/.vs/ProjectEvaluation/elearningapi.metadata.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/elearningapi.projects.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/.vs/ProjectEvaluation/elearningapi.projects.v8.bin -------------------------------------------------------------------------------- /.vs/ProjectEvaluation/elearningapi.strings.v8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/.vs/ProjectEvaluation/elearningapi.strings.v8.bin -------------------------------------------------------------------------------- /ELearningApi.Api/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/FluentValidation.AspNetCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/FluentValidation.DependencyInjectionExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/FluentValidation.DependencyInjectionExtensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/MediatR.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Localization.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Localization.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearnin.4D4BEB5F.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Debug/net8.0/ELearnin.4D4BEB5F.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 04840ce87550970e70cb92d6ca861d7a4b489556d7adfef8589e1414945e179a 2 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 9ed0bea32ff72a7d6c14770e17e85aa50e644fe6255a96984be081eefa88e1f2 2 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 12c71495b2aa2ab39ce18c75de4727c3750f8c69d629c4a474cf8a98544920bf 2 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/ELearningApi.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Debug/net8.0/refint/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/staticwebassets/msbuild.build.ELearningApi.Api.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.ELearningApi.Api.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.ELearningApi.Api.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearnin.4D4BEB5F.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/ELearnin.4D4BEB5F.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 65b8e6c3074100caf8caa9a70d1ac5e636f04e4cce28ec09fba11839078dfde8 2 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.MvcApplicationPartsAssemblyInfo.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1b389b924218bb66ae2aa1831e98378dea563d5d565ab0632f1fbd360ce2fad4 2 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.genpublishdeps.cache: -------------------------------------------------------------------------------- 1 | ef8a474792443ff42ddbb523ecb02f3e4b4514a093a6e2249d0d43b0501f0827 2 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 2b1ac283a7dafad0c5d44f5fe6987a1d7f85d230949fc1e5340905add90c737a 2 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/ELearningApi.Api.SourceManifest.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/AutoMapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/BouncyCastle.Cryptography.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Api.pdb -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.AspNetCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.DependencyInjectionExtensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.DependencyInjectionExtensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/FluentValidation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/MediatR.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.JwtBearer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Authentication.JwtBearer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.Internal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.Internal.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Bcl.AsyncInterfaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.Workspaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.Workspaces.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.Relational.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.SqlServer.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.EntityFrameworkCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.DependencyModel.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Identity.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Identity.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Identity.Stores.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Identity.Stores.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Localization.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Localization.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Options.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Extensions.Options.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Identity.Client.Extensions.Msal.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Identity.Client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.Identity.Client.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Abstractions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.JsonWebTokens.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Logging.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Protocols.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Microsoft.IdentityModel.Tokens.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/StoredProcedureEFCore.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Annotations.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Annotations.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.Swagger.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerGen.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/Swashbuckle.AspNetCore.SwaggerUI.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.CodeDom.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Configuration.ConfigurationManager.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Security.Cryptography.ProtectedData.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Security.Permissions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft.AspNetCore": "Warning" 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/cs/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/de/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/es/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/es/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/es/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/fr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/it/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/it/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/it/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ja/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ko/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pl/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/pt-BR/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/ru/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/unix/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/unix/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Drawing.Common.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Runtime.Caching.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Runtime.Caching.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Windows.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/runtimes/win/lib/net6.0/System.Windows.Extensions.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/tr/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hans/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/PubTmp/Out/zh-Hant/Microsoft.CodeAnalysis.resources.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/apphost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Api/obj/Release/net8.0/refint/ELearningApi.Api.dll -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/staticwebassets/msbuild.build.ELearningApi.Api.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.ELearningApi.Api.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.ELearningApi.Api.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | -------------------------------------------------------------------------------- /ELearningApi.Api/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885879451 -------------------------------------------------------------------------------- /ELearningApi.Api/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885879451 -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Auth/AuthResultDto.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Core.MediatrHandlers.Auth; 2 | 3 | public class AuthResultDto 4 | { 5 | public string Token { get; set; } 6 | public string RefreshToken { get; set; } 7 | public DateTime TokenExpiration { get; set; } 8 | } 9 | -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Category/CategoryDto.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Core.MediatrHandlers.Category; 2 | 3 | public class CategoryDto 4 | { 5 | public Guid Id { get; set; } 6 | public string Name { get; set; } 7 | public int CourseCount { get; set; } 8 | } -------------------------------------------------------------------------------- /ELearningApi.Core/MediatrHandlers/Review/Queries/GetCourseAverageRating/GetCourseAverageRatingQueryValidator.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Core.MediatrHandlers.Review.Queries.GetCourseAverageRating; 2 | 3 | public class GetCourseAverageRatingQueryValidator 4 | { 5 | 6 | } -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/bin/Debug/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/bin/Release/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/bin/Release/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearnin.B4D6C508.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/obj/Debug/net8.0/ELearnin.B4D6C508.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ba0064a94afd684280020d05cd4bbeec0f20bc39a4017555a407a8fd011d7119 2 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 3e9e894a40dfd92b6f62ef75af7cd97f3995ac0fa61d8c0e24d74b14348db376 2 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Debug/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/obj/Debug/net8.0/refint/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearnin.B4D6C508.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/obj/Release/net8.0/ELearnin.B4D6C508.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 78c01cdc38d9a8316aedbce172fb7b4748bfe3f79b4cc10434ba24a2483f7280 2 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 6606f5bc8494e16c9651a65f87ed800004932adc925af13d1e71bdf61e5a0a0a 2 | -------------------------------------------------------------------------------- /ELearningApi.Core/obj/Release/net8.0/ELearningApi.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Core/obj/Release/net8.0/refint/ELearningApi.Core.dll -------------------------------------------------------------------------------- /ELearningApi.Core/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885849426 -------------------------------------------------------------------------------- /ELearningApi.Core/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885849426 -------------------------------------------------------------------------------- /ELearningApi.Data/Entities/Category.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Entities; 2 | 3 | public class Category 4 | { 5 | public Guid Id { get; set; } 6 | public string Name { get; set; } 7 | public List Courses { get; set; } = new List(); 8 | } 9 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/CourseLevel.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | public enum CourseLevel 4 | { 5 | Beginner, 6 | Intermediate, 7 | Advanced, 8 | AllLevels 9 | } 10 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/EnrollmentStatus.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | public enum EnrollmentStatus 3 | { 4 | Enrolled, 5 | InProgress, 6 | Completed 7 | } 8 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/LectureType.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | public enum LectureType 4 | { 5 | Video, 6 | Text, 7 | Presentation, 8 | LiveSession 9 | } 10 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/MediaType.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | public enum MediaType { Image, Audio, Video } 4 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/PaymentStatus.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | 4 | public enum PaymentStatus 5 | { 6 | Pending, 7 | Completed, 8 | Failed, 9 | Refunded 10 | } -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/ProgressStatus.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | public enum ProgressStatus 4 | { 5 | NotStarted, 6 | InProgress, 7 | Completed 8 | } 9 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/QuestionType.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | public enum QuestionType 4 | { 5 | MultipleChoice, 6 | MultipleAnswer, 7 | TrueFalse 8 | 9 | } -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/QuizType.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | 3 | public enum QuizType { Course, Section, Lecture, Standalone } 4 | -------------------------------------------------------------------------------- /ELearningApi.Data/Enums/ResourceType.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Data.Enums; 2 | public enum ResourceType 3 | { 4 | Document, 5 | Spreadsheet, 6 | Presentation, 7 | Video, 8 | Audio, 9 | Link 10 | } 11 | -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Data/bin/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Data/bin/Release/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 9cd49ab3c2dad9c51d150a4acf0f290f0f929495d646aac2304eb0a70136c4ce 2 | -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 36ec3685d3e707814ef193edd2d1e0bbf40eadef087e8f1f00910c2e3bd44288 2 | -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Data/obj/Debug/net8.0/refint/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 074fd8ff078c45c8a88324bc94f50dbac2423c52b3e9a85bc805effe8aa36d2f 2 | -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e1bd1becf4d5602621993e7cc35c4f82346f3db552656654a33394d0d0d36ab5 2 | -------------------------------------------------------------------------------- /ELearningApi.Data/obj/Release/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Data/obj/Release/net8.0/refint/ELearningApi.Data.dll -------------------------------------------------------------------------------- /ELearningApi.Data/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885859434 -------------------------------------------------------------------------------- /ELearningApi.Data/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885859434 -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Data.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/bin/Debug/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/bin/Release/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearnin.A21C9E20.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Debug/net8.0/ELearnin.A21C9E20.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | f96d00f897e98ed775bc73d861da29516350974b1ca5500648a4ad41583d4fe5 2 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 11318def4e189aae59f147173e4ca7a6de7dea8e492280dd517a7658eed6632e 2 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | bafeaa52b3d2ac2a700e6a18027cf41479b79a62f21ac6d2d681198cb378655d 2 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Debug/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Debug/net8.0/refint/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearnin.A21C9E20.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Release/net8.0/ELearnin.A21C9E20.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 5999bb34b7f339c4540693f20250a5bbc801f4aadf713c74c5388bf9be587a6a 2 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e85574ad186518f34e00884104c7d2a6b96897ea67e32200562acb3ee97150f1 2 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | 37dbef0e2e23b0c08ee8244d9644bba774b8e45327c46bed541d5a521577951e 2 | -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/ELearningApi.Infrustructure.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Release/net8.0/ref/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/Release/net8.0/refint/ELearningApi.Infrustructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Infrustructure/obj/Release/net8.0/refint/ELearningApi.Infrustructure.dll -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 -------------------------------------------------------------------------------- /ELearningApi.Infrustructure/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 -------------------------------------------------------------------------------- /ELearningApi.Service/IService/IEmailService.cs: -------------------------------------------------------------------------------- 1 | namespace ELearningApi.Service.IService; 2 | 3 | public interface IEmailService 4 | { 5 | Task SendEmailAsync(string toEmail, string subject, string body); 6 | } -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Data.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Debug/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Infrustructure.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/bin/Release/net8.0/ELearningApi.Service.pdb -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearnin.5E4847FE.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Debug/net8.0/ELearnin.5E4847FE.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4dc9abb9abd2e7242eb78904803d18a3d0aed827e79bea6b37cac06bb73d7da9 2 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 42e36b81c7450469fe3257f70c2b635b566e1a6043b49c7c8d4e7baab23b77ca 2 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Debug/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Debug/net8.0/refint/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] 5 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearnin.5E4847FE.Up2Date: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Release/net8.0/ELearnin.5E4847FE.Up2Date -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | 4bc19c6e56fdd8e0ebd1b02134ba3daa2fa6ee8c68b5055222b6978ba83281c0 2 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.assets.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.csproj.AssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.csproj.AssemblyReference.cache -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 279bdbd4a95f6c784fb70dd4bfa5ddf5a8bd3b5800af99048ef4ca08b578e345 2 | -------------------------------------------------------------------------------- /ELearningApi.Service/obj/Release/net8.0/ELearningApi.Service.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abdalla-hassanin/E-Learning-API/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/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/c5fc10aae8c3d7b447cc7237027725120db06bff/ELearningApi.Service/obj/Release/net8.0/refint/ELearningApi.Service.dll -------------------------------------------------------------------------------- /ELearningApi.Service/obj/rider.project.model.nuget.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 -------------------------------------------------------------------------------- /ELearningApi.Service/obj/rider.project.restore.info: -------------------------------------------------------------------------------- 1 | 17272635885749428 --------------------------------------------------------------------------------