refacotr: clean code

This commit is contained in:
2025-02-11 15:36:55 +03:00
parent 3eb043b24c
commit b0d9a67c1c
21 changed files with 21 additions and 21 deletions

View File

@ -19,4 +19,4 @@ public enum OAuthProvider
/// OAuth provider for Mail.ru.
/// </summary>
MailRu
}
}

View File

@ -29,4 +29,4 @@ public class PasswordPolicy
/// Gets or sets a value indicating whether at least one special character is required in the password.
/// </summary>
public bool RequireSpecialCharacter { get; set; }
}
}

View File

@ -14,4 +14,4 @@ public enum TwoFactorAuthentication
/// TOTP (Time-based One-Time Password) is required for additional verification.
/// </summary>
TotpRequired,
}
}

View File

@ -27,4 +27,4 @@ public class CreateUserRequest
[Required]
[MinLength(2)]
public required string Password { get; set; }
}
}

View File

@ -34,4 +34,4 @@ public class ScheduleRequest
/// Gets or sets an array of lesson type IDs.
/// </summary>
public int[]? LessonType { get; set; } = null;
}
}

View File

@ -28,4 +28,4 @@ public class CampusDetailsResponse
/// Gets or sets the address of the campus (optional).
/// </summary>
public string? Address { get; set; }
}
}

View File

@ -114,4 +114,4 @@ public class ScheduleResponse
/// Gets or sets the links to online meetings for the schedule entry.
/// </summary>
public required IEnumerable<string?> LinkToMeet { get; set; }
}
}