11,571 questions
This article should help
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I have a data model that is declared as below. My Question how do I align the output in Swagger UI. You see that the comments is below instate of at the same level as the "recordNo"
/// <summary>
/// Person Identity
/// </summary>
public record PersonIdentity
{
/// <summary>
/// Record Number
/// </summary>
[Required]
[StringLength(48, MinimumLength = 2)]
public string RecordNo { get; init; }
}
This article should help