Kavita/API/Entities/Enums/ReadingProfileKind.cs
Joseph Milazzo 29c29976f1 Reworked some of the logic to be less round trips to db.
Fixed a localization "off" issue.

Don't allow users to rename the Default Reading Profile.
2025-06-07 15:07:18 -05:00

17 lines
474 B
C#

namespace API.Entities.Enums;
public enum ReadingProfileKind
{
/// <summary>
/// Generate by Kavita when registering a user, this is your default profile
/// </summary>
Default,
/// <summary>
/// Created by the user in the UI or via the API
/// </summary>
User,
/// <summary>
/// Automatically generated by Kavita to track changes made in the readers. Can be converted to a User Reading Profile.
/// </summary>
Implicit
}