Documentation modifications

This commit is contained in:
julian
2026-06-27 15:23:26 -07:00
parent a633fe6c06
commit a19fb90902
218 changed files with 2882 additions and 0 deletions
@@ -6,10 +6,19 @@
/// <typeparam name="T">The type of the payload contained within the response.</typeparam>
public class Response<T>
{
/// <summary>
/// Initializes a new instance of the <see cref="Response"/> class using default values.
/// </summary>
/// <!-- aidoc:v1 sig=c192431 body=4448e1d -->
public Response()
{
}
/// <summary>
/// Initializes a new instance of the <see cref="Response{T}"/> class representing a successful result, setting <see cref="Response{T}.Succeeded"/> to <c>true</c>, <see cref="Response{T}.Message"/> to an empty string, <see cref="Response{T}.Errors"/> to <c>null</c>, and storing the supplied payload in <see cref="Response{T}.Data"/>.
/// </summary>
/// <param name="data">The payload to expose through <see cref="Response{T}.Data"/>.</param>
/// <!-- aidoc:v1 sig=f4d0833 body=8db513f -->
public Response(T data)
{
Succeeded = true;