Add XML documentation for EnvelopeQuery properties
This commit introduces XML documentation comments for the `UserId`, `Username`, and `UserEmail` properties in the `EnvelopeQuery` record. The comments clarify the purpose of each property, enhancing code readability and maintainability.
This commit is contained in:
parent
7bbed3890e
commit
6969f5f93e
@ -15,9 +15,18 @@ public record EnvelopeQuery(
|
|||||||
int? Status = null,
|
int? Status = null,
|
||||||
string? Uuid = null) : IRequest
|
string? Uuid = null) : IRequest
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Die eindeutige Kennung des Benutzers.
|
||||||
|
/// </summary>
|
||||||
public int? UserId => User?.Id;
|
public int? UserId => User?.Id;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Der Benutzername des Absenders.
|
||||||
|
/// </summary>
|
||||||
public string? Username => User?.Username;
|
public string? Username => User?.Username;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Die E-Mail-Adresse des Benutzers.
|
||||||
|
/// </summary>
|
||||||
public string? UserEmail => User?.Username;
|
public string? UserEmail => User?.Username;
|
||||||
};
|
};
|
||||||
Loading…
x
Reference in New Issue
Block a user