Files
NebulaLauncher/Nebula.Launcher/Models/Auth/ProfileAuthCredentials.cs
2025-08-06 21:29:00 +03:00

12 lines
378 B
C#

using System.Text.Json.Serialization;
using System.Windows.Input;
using Avalonia.Media;
using Nebula.Shared.Services;
namespace Nebula.Launcher.Models.Auth;
public sealed record ProfileAuthCredentials(
AuthTokenCredentials Credentials,
string AuthName,
[property: JsonIgnore] ICommand OnSelect = default!,
[property: JsonIgnore] ICommand OnDelete = default!);