26 lines
647 B
C#
26 lines
647 B
C#
namespace NexusReader.Application.DTOs.User;
|
|
|
|
public record UserProfileDto
|
|
{
|
|
public string Email { get; init; } = string.Empty;
|
|
public int AITokensUsed { get; init; }
|
|
|
|
/// <summary>
|
|
/// Relational data for the current subscription plan.
|
|
/// </summary>
|
|
public SubscriptionPlanDto Plan { get; init; } = new();
|
|
|
|
public int AverageQuizScore { get; init; }
|
|
|
|
/// <summary>
|
|
/// Summary of the last read book.
|
|
/// </summary>
|
|
public LastReadBookDto? LastReadBook { get; init; }
|
|
}
|
|
|
|
public record LastReadBookDto
|
|
{
|
|
public Guid Id { get; init; }
|
|
public string Title { get; init; } = string.Empty;
|
|
}
|