mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-11 20:42:53 -04:00
Co-authored-by: Joseph Milazzo <joseph.v.milazzo@gmail.com> Co-authored-by: Joe Milazzo <josephmajora@gmail.com>
18 lines
484 B
C#
18 lines
484 B
C#
namespace Kavita.Models.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
|
|
}
|