mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-24 03:56:30 +00:00
9 lines
225 B
C#
9 lines
225 B
C#
using Daybreak.Shared.Models;
|
|
|
|
namespace Daybreak.Models;
|
|
public sealed class CredentialModel
|
|
{
|
|
public required LoginCredentials LoginCredentials { get; init; }
|
|
public bool PasswordVisible { get; set; } = false;
|
|
}
|