props/MultiShop/server/Models/ApplicationPreferences.cs

15 lines
358 B
C#
Raw Normal View History

namespace MultiShop.Shared.Models
{
public class ApplicationPreferences
{
public int Id { get; set; }
public string ApplicationUserId { get; set; }
public bool DarkMode { get; set; }
public bool CacheCommonSearches { get; set; } = true;
public bool EnableSearchHistory { get; set; } = true;
}
}