11 lines
294 B
C#
11 lines
294 B
C#
namespace adas_core.Authentication.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a container for login-related information.
|
|
/// </summary>
|
|
/// <!-- aidoc:v1 sig=3e9909a -->
|
|
public class LoginInfo
|
|
{
|
|
public string Username { get; set; } = null!;
|
|
public string Password { get; set; } = null!;
|
|
} |