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

10 lines
334 B
C#
Raw Normal View History

2025-07-02 21:32:51 +03:00
using System.Text.Json.Serialization;
using System.Windows.Input;
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;
public sealed record ProfileAuthCredentials(
2025-07-10 15:22:15 +03:00
AuthTokenCredentials Credentials,
2025-07-02 21:32:51 +03:00
[property: JsonIgnore] ICommand OnSelect = default!,
[property: JsonIgnore] ICommand OnDelete = default!);