Files
NebulaLauncher/Nebula.Launcher/Models/Auth/ProfileAuthCredentials.cs
2025-07-02 21:32:51 +03:00

11 lines
328 B
C#

using System.Text.Json.Serialization;
using System.Windows.Input;
namespace Nebula.Launcher.Models.Auth;
public sealed record ProfileAuthCredentials(
string Login,
string Password,
string AuthServer,
[property: JsonIgnore] ICommand OnSelect = default!,
[property: JsonIgnore] ICommand OnDelete = default!);