Files
NebulaLauncher/Nebula.Launcher/Models/Auth/ProfileAuthCredentials.cs
2025-11-08 13:42:11 +03:00

12 lines
370 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 ProfileEntry(
ProfileAuthCredentials Credentials,
string AuthName,
[property: JsonIgnore] ICommand OnSelect = default!,
[property: JsonIgnore] ICommand OnDelete = default!);