Files
NebulaLauncher/Nebula.Shared/Models/Auth/LoginToken.cs

6 lines
193 B
C#
Raw Normal View History

2025-01-05 17:05:23 +03:00
namespace Nebula.Shared.Models.Auth;
2024-12-22 21:38:19 +03:00
2025-07-10 15:22:15 +03:00
public sealed record LoginToken(string Token, DateTimeOffset ExpireTime)
{
public static LoginToken Empty = new(string.Empty, DateTimeOffset.Now);
}