Files
NebulaLauncher/Nebula.Launcher/Models/Auth/ProfileAuthCredentials.cs

11 lines
328 B
C#
Raw Normal View History

2025-07-02 21:32:51 +03:00
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!);