// // Copyright (c) alveus.dev. All rights reserved. Licensed under the MIT License. // namespace Astral.Core.Constants; /// /// User's discoverability/availability. /// public enum Discoverability { /// /// Discoverable to none. /// None, /// /// Discoverable only to friends. /// Friends, /// /// Discoverable to connections. /// Connections, /// /// Discoverable to all. /// All }