Achieves 100% XML doc coverage on non-trivial types with CS1591 enforcement via Directory.Build.props. Coverage by project: - Butter: from 6.5% to 100% (DTOs, enums, MIME types) - Lactose: from ~28% to 100% (controllers, services, repos, jobs, models) - MilkStream.Client: from ~29% to 100% (all frontend services) Uses <inheritdoc /> on repository implementations (interfaces already documented) and full <summary>/<param>/<returns> tags elsewhere. Enums include member-level docs.
20 lines
541 B
C#
20 lines
541 B
C#
namespace MilkStream.Client;
|
|
|
|
/// <summary>
|
|
/// Stores the current authentication state for the client.
|
|
/// </summary>
|
|
public class AuthInfo {
|
|
/// <summary>
|
|
/// Gets or sets the authenticated user's ID.
|
|
/// </summary>
|
|
public required Guid? UserId { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the JWT access token.
|
|
/// </summary>
|
|
public required string? Token { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the refresh token.
|
|
/// </summary>
|
|
public required string? RefreshToken { get; set; }
|
|
}
|