galaeth-draft/Galaeth.Core/Constants/RefreshTokenContext.cs

15 lines
280 B
C#
Raw Permalink Normal View History

2024-11-17 10:31:01 +01:00
using Galaeth.Core.Entities;
namespace Galaeth.Core.Constants;
/// <summary>
/// Contexts for <see cref="RefreshToken"/> entities.
/// </summary>
public enum RefreshTokenContext
{
/// <summary>
/// Refresh token for a user's access.
/// </summary>
UserAccess,
}