//-----------------------------------------------------------------------
//
// Copyright (c) aliasvault. All rights reserved.
// Licensed under the AGPLv3 license. See LICENSE.md file in the project root for full license information.
//
//-----------------------------------------------------------------------
namespace AliasServerDb;
///
/// Subscription tier of an account, used to target a rule at a class of users.
/// Tiers are not implemented yet, acts as placeholder for future implementation.
///
public enum AccountTier
{
///
/// The default tier for all accounts.
///
Free = 0,
///
/// Premium (paid) tier. Not yet implemented, acts as placeholder for unit tests.
///
Premium = 1,
}