diff --git a/ApiDto/Common/OAuthProvider.cs b/ApiDto/Common/OAuthProvider.cs index ccd0622..d0781a5 100644 --- a/ApiDto/Common/OAuthProvider.cs +++ b/ApiDto/Common/OAuthProvider.cs @@ -19,4 +19,4 @@ public enum OAuthProvider /// OAuth provider for Mail.ru. /// MailRu -} +} \ No newline at end of file diff --git a/ApiDto/Common/PasswordPolicy.cs b/ApiDto/Common/PasswordPolicy.cs index bd308e6..1e27ec7 100644 --- a/ApiDto/Common/PasswordPolicy.cs +++ b/ApiDto/Common/PasswordPolicy.cs @@ -29,4 +29,4 @@ public class PasswordPolicy /// Gets or sets a value indicating whether at least one special character is required in the password. /// public bool RequireSpecialCharacter { get; set; } -} +} \ No newline at end of file diff --git a/ApiDto/Common/TwoFactorAuthentication.cs b/ApiDto/Common/TwoFactorAuthentication.cs index 52dd09c..568e3e2 100644 --- a/ApiDto/Common/TwoFactorAuthentication.cs +++ b/ApiDto/Common/TwoFactorAuthentication.cs @@ -14,4 +14,4 @@ public enum TwoFactorAuthentication /// TOTP (Time-based One-Time Password) is required for additional verification. /// TotpRequired, -} +} \ No newline at end of file diff --git a/ApiDto/Requests/CreateUserRequest.cs b/ApiDto/Requests/CreateUserRequest.cs index 2d6fecf..56be856 100644 --- a/ApiDto/Requests/CreateUserRequest.cs +++ b/ApiDto/Requests/CreateUserRequest.cs @@ -27,4 +27,4 @@ public class CreateUserRequest [Required] [MinLength(2)] public required string Password { get; set; } -} +} \ No newline at end of file diff --git a/ApiDto/Requests/ScheduleRequest.cs b/ApiDto/Requests/ScheduleRequest.cs index dc5dbb6..3f971b1 100644 --- a/ApiDto/Requests/ScheduleRequest.cs +++ b/ApiDto/Requests/ScheduleRequest.cs @@ -34,4 +34,4 @@ public class ScheduleRequest /// Gets or sets an array of lesson type IDs. /// public int[]? LessonType { get; set; } = null; -} +} \ No newline at end of file diff --git a/ApiDto/Responses/CampusDetailsResponse.cs b/ApiDto/Responses/CampusDetailsResponse.cs index 82db94e..83cf0ce 100644 --- a/ApiDto/Responses/CampusDetailsResponse.cs +++ b/ApiDto/Responses/CampusDetailsResponse.cs @@ -28,4 +28,4 @@ public class CampusDetailsResponse /// Gets or sets the address of the campus (optional). /// public string? Address { get; set; } -} +} \ No newline at end of file diff --git a/ApiDto/Responses/ScheduleResponse.cs b/ApiDto/Responses/ScheduleResponse.cs index 71462b9..51379d7 100644 --- a/ApiDto/Responses/ScheduleResponse.cs +++ b/ApiDto/Responses/ScheduleResponse.cs @@ -114,4 +114,4 @@ public class ScheduleResponse /// Gets or sets the links to online meetings for the schedule entry. /// public required IEnumerable LinkToMeet { get; set; } -} +} \ No newline at end of file diff --git a/Endpoint/Common/MapperDto/CronUpdateSkipConverter.cs b/Endpoint/Common/MapperDto/CronUpdateSkipConverter.cs index baa6a0d..deeb35d 100644 --- a/Endpoint/Common/MapperDto/CronUpdateSkipConverter.cs +++ b/Endpoint/Common/MapperDto/CronUpdateSkipConverter.cs @@ -16,4 +16,4 @@ public static class CronUpdateSkipConverter }).ToList(); public static List ConvertFromDto(this IEnumerable pairPeriod) => pairPeriod.Select(x => x.Get()).ToList(); -} +} \ No newline at end of file diff --git a/Endpoint/Common/MapperDto/PairPeriodTimeConverter.cs b/Endpoint/Common/MapperDto/PairPeriodTimeConverter.cs index a9ffffc..594611d 100644 --- a/Endpoint/Common/MapperDto/PairPeriodTimeConverter.cs +++ b/Endpoint/Common/MapperDto/PairPeriodTimeConverter.cs @@ -11,4 +11,4 @@ public static class PairPeriodTimeConverter public static Dictionary ConvertFromDto(this IDictionary pairPeriod) => pairPeriod.ToDictionary(kvp => kvp.Key, kvp => new ScheduleSettings.PairPeriodTime(kvp.Value.Start, kvp.Value.End)); -} +} \ No newline at end of file diff --git a/Endpoint/Configuration/Core/Startup/JwtConfiguration.cs b/Endpoint/Configuration/Core/Startup/JwtConfiguration.cs index 4188479..962d48d 100644 --- a/Endpoint/Configuration/Core/Startup/JwtConfiguration.cs +++ b/Endpoint/Configuration/Core/Startup/JwtConfiguration.cs @@ -64,4 +64,4 @@ public static class JwtConfiguration }; }); } -} +} \ No newline at end of file diff --git a/Endpoint/Configuration/Core/Startup/LoggerConfiguration.cs b/Endpoint/Configuration/Core/Startup/LoggerConfiguration.cs index 775ef8f..636c650 100644 --- a/Endpoint/Configuration/Core/Startup/LoggerConfiguration.cs +++ b/Endpoint/Configuration/Core/Startup/LoggerConfiguration.cs @@ -99,4 +99,4 @@ public static class LoggerConfiguration }; }); } -} +} \ No newline at end of file diff --git a/Endpoint/Configuration/ISaveSettings.cs b/Endpoint/Configuration/ISaveSettings.cs index 860cf5a..9ebdf31 100644 --- a/Endpoint/Configuration/ISaveSettings.cs +++ b/Endpoint/Configuration/ISaveSettings.cs @@ -2,4 +2,4 @@ public interface ISaveSettings { void SaveSetting(); -} +} \ No newline at end of file diff --git a/Security/Common/Interfaces/ICacheService.cs b/Security/Common/Interfaces/ICacheService.cs index c2cb1e3..a0e10cf 100644 --- a/Security/Common/Interfaces/ICacheService.cs +++ b/Security/Common/Interfaces/ICacheService.cs @@ -13,4 +13,4 @@ public interface ICacheService Task GetAsync(string key, CancellationToken cancellationToken = default); Task RemoveAsync(string key, CancellationToken cancellationToken = default); -} +} \ No newline at end of file diff --git a/Security/Common/Model/CookieOptions.cs b/Security/Common/Model/CookieOptions.cs index 3dc22f2..ded2f70 100644 --- a/Security/Common/Model/CookieOptions.cs +++ b/Security/Common/Model/CookieOptions.cs @@ -26,4 +26,4 @@ public class CookieOptions internal void DropCookie(HttpContext context, string name) => SetCookie(context, name, "", DateTimeOffset.MinValue); -} +} \ No newline at end of file diff --git a/SqlData/Migrations/MysqlMigrations/Migrations/20240601023106_InitialMigration.cs b/SqlData/Migrations/MysqlMigrations/Migrations/20240601023106_InitialMigration.cs index 573b78f..827bd0f 100644 --- a/SqlData/Migrations/MysqlMigrations/Migrations/20240601023106_InitialMigration.cs +++ b/SqlData/Migrations/MysqlMigrations/Migrations/20240601023106_InitialMigration.cs @@ -386,4 +386,4 @@ namespace MysqlMigrations.Migrations name: "Campus"); } } -} +} \ No newline at end of file diff --git a/SqlData/Migrations/MysqlMigrations/Migrations/20241027034820_RemoveUnusedRef.cs b/SqlData/Migrations/MysqlMigrations/Migrations/20241027034820_RemoveUnusedRef.cs index e990751..e9d0f09 100644 --- a/SqlData/Migrations/MysqlMigrations/Migrations/20241027034820_RemoveUnusedRef.cs +++ b/SqlData/Migrations/MysqlMigrations/Migrations/20241027034820_RemoveUnusedRef.cs @@ -80,4 +80,4 @@ namespace MysqlMigrations.Migrations onDelete: ReferentialAction.SetNull); } } -} +} \ No newline at end of file diff --git a/SqlData/Migrations/PsqlMigrations/Migrations/20240601021702_InitialMigration.cs b/SqlData/Migrations/PsqlMigrations/Migrations/20240601021702_InitialMigration.cs index 9015b9f..6f2a9f5 100644 --- a/SqlData/Migrations/PsqlMigrations/Migrations/20240601021702_InitialMigration.cs +++ b/SqlData/Migrations/PsqlMigrations/Migrations/20240601021702_InitialMigration.cs @@ -362,4 +362,4 @@ namespace PsqlMigrations.Migrations name: "Campus"); } } -} +} \ No newline at end of file diff --git a/SqlData/Migrations/PsqlMigrations/Migrations/20241027032753_RemoveUnusedRef.cs b/SqlData/Migrations/PsqlMigrations/Migrations/20241027032753_RemoveUnusedRef.cs index 1589fd5..e79d873 100644 --- a/SqlData/Migrations/PsqlMigrations/Migrations/20241027032753_RemoveUnusedRef.cs +++ b/SqlData/Migrations/PsqlMigrations/Migrations/20241027032753_RemoveUnusedRef.cs @@ -46,4 +46,4 @@ namespace PsqlMigrations.Migrations onDelete: ReferentialAction.SetNull); } } -} +} \ No newline at end of file diff --git a/SqlData/Migrations/SqliteMigrations/Migrations/20240601015714_InitialMigration.cs b/SqlData/Migrations/SqliteMigrations/Migrations/20240601015714_InitialMigration.cs index 9afa7f2..a88a563 100644 --- a/SqlData/Migrations/SqliteMigrations/Migrations/20240601015714_InitialMigration.cs +++ b/SqlData/Migrations/SqliteMigrations/Migrations/20240601015714_InitialMigration.cs @@ -361,4 +361,4 @@ namespace SqliteMigrations.Migrations name: "Campus"); } } -} +} \ No newline at end of file diff --git a/SqlData/Migrations/SqliteMigrations/Migrations/20241027032931_RemoveUnusedRef.cs b/SqlData/Migrations/SqliteMigrations/Migrations/20241027032931_RemoveUnusedRef.cs index 4fcdfcc..a5e0474 100644 --- a/SqlData/Migrations/SqliteMigrations/Migrations/20241027032931_RemoveUnusedRef.cs +++ b/SqlData/Migrations/SqliteMigrations/Migrations/20241027032931_RemoveUnusedRef.cs @@ -46,4 +46,4 @@ namespace SqliteMigrations.Migrations onDelete: ReferentialAction.SetNull); } } -} +} \ No newline at end of file diff --git a/SqlData/Persistence/Common/ModelBuilderExtensions.cs b/SqlData/Persistence/Common/ModelBuilderExtensions.cs index f2c8af4..04b7ecb 100644 --- a/SqlData/Persistence/Common/ModelBuilderExtensions.cs +++ b/SqlData/Persistence/Common/ModelBuilderExtensions.cs @@ -19,4 +19,4 @@ public static class ModelBuilderExtensions var applyConcreteMethod = applyGenericMethod.MakeGenericMethod(entityType); applyConcreteMethod.Invoke(modelBuilder, [configuration]); } -} +} \ No newline at end of file