26 lines
492 B
C#
26 lines
492 B
C#
// <copyright file="TokenScope.cs" company="alveus.dev">
|
|
// Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License.
|
|
// </copyright>
|
|
|
|
namespace Astral.Core.Constants;
|
|
|
|
/// <summary>
|
|
/// Token scopes.
|
|
/// </summary>
|
|
public enum TokenScope
|
|
{
|
|
/// <summary>
|
|
/// Owner token scope.
|
|
/// </summary>
|
|
Owner,
|
|
|
|
/// <summary>
|
|
/// Domain token scope.
|
|
/// </summary>
|
|
Domain,
|
|
|
|
/// <summary>
|
|
/// Place token scope.
|
|
/// </summary>
|
|
Place
|
|
}
|