2025-07-02 21:32:51 +03:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
using System.Windows.Input;
|
2025-07-15 18:38:53 +03:00
|
|
|
using Avalonia.Media;
|
2025-07-10 15:22:15 +03:00
|
|
|
using Nebula.Shared.Services;
|
2025-07-02 21:32:51 +03:00
|
|
|
|
|
|
|
|
namespace Nebula.Launcher.Models.Auth;
|
|
|
|
|
|
2025-11-08 13:42:11 +03:00
|
|
|
public sealed record ProfileEntry(
|
|
|
|
|
ProfileAuthCredentials Credentials,
|
2025-07-15 18:38:53 +03:00
|
|
|
string AuthName,
|
2025-07-02 21:32:51 +03:00
|
|
|
[property: JsonIgnore] ICommand OnSelect = default!,
|
|
|
|
|
[property: JsonIgnore] ICommand OnDelete = default!);
|