docs: add XML documentation to NEW solution src files
Fix 173 of 175 documentation issues across 48 files using CommentChecker, adding missing <summary>, <param>, and <inheritdoc /> tags to public APIs.
This commit is contained in:
@@ -10,6 +10,11 @@ public class AuthFormViewModel : ViewModelBase
|
||||
private readonly AuthSection _model;
|
||||
private readonly Action _onChanged;
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="AuthFormViewModel"/> class.
|
||||
/// </summary>
|
||||
/// <param name="model">The auth section model to edit.</param>
|
||||
/// <param name="onChanged">The callback to invoke when configuration changes.</param>
|
||||
public AuthFormViewModel(AuthSection model, Action onChanged)
|
||||
{
|
||||
_model = model ?? throw new ArgumentNullException(nameof(model));
|
||||
|
||||
Reference in New Issue
Block a user