mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-20 15:41:40 -04:00
20 lines
686 B
C#
20 lines
686 B
C#
//-----------------------------------------------------------------------
|
|
// <copyright file="ValidateUsernameRequest.cs" company="lanedirt">
|
|
// Copyright (c) lanedirt. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE.md file in the project root for full license information.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace AliasVault.Shared.Models.WebApi.Auth;
|
|
|
|
/// <summary>
|
|
/// A request to validate a username.
|
|
/// </summary>
|
|
public class ValidateUsernameRequest
|
|
{
|
|
/// <summary>
|
|
/// Gets the username to validate.
|
|
/// </summary>
|
|
public required string Username { get; init; } = string.Empty;
|
|
}
|