Files
NebulaLauncher/Nebula.Launcher/Models/Auth/ProfileAuthCredentials.cs
2025-07-10 15:22:15 +03:00

10 lines
334 B
C#

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