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