15 lines
280 B
C#
15 lines
280 B
C#
|
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,
|
||
|
}
|