mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-23 07:20:32 -04:00
18 lines
474 B
C#
18 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
|
|
}
|