Fix #4025: add user setting to keep the view mode.

This commit is contained in:
Ben
2024-03-20 15:46:32 +08:00
parent 854f3b5257
commit 7b67c9aa8d
4 changed files with 99 additions and 24 deletions

View File

@ -0,0 +1,15 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Oqtane.Models
{
public class UserSetting
{
public const string ViewMode = "Page:ViewMode";
public const string LastViewPage = "LastViewed";
}
}