astral-api/Astral.Core/Constants/TokenScope.cs

27 lines
492 B
C#
Raw Permalink Normal View History

2024-12-14 17:31:17 +01:00
// <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
}