using System.ComponentModel; namespace Kavita.Models.Entities.Enums.UserPreferences; public enum PageLayoutMode { [Description("Cards")] Cards = 0, [Description("List")] List = 1 }