namespace Shogi.UI.Identity;
public class FormResult
{
///
/// Gets or sets a value indicating whether the action was successful.
///
public bool Succeeded { get; set; }
///
/// On failure, the problem details are parsed and returned in this array.
///
public string[] ErrorList { get; set; } = [];
}