2021-07-14 01:13:19 -05:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
|
2021-07-13 00:35:31 -05:00
|
|
|
namespace Props.Shared.Models
|
2021-07-12 03:07:16 -05:00
|
|
|
{
|
|
|
|
public class ApplicationPreferences
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
2021-07-14 01:13:19 -05:00
|
|
|
|
|
|
|
[Required]
|
2021-07-12 03:07:16 -05:00
|
|
|
public string ApplicationUserId { get; set; }
|
|
|
|
|
|
|
|
public bool DarkMode { get; set; }
|
|
|
|
|
|
|
|
public bool CacheCommonSearches { get; set; } = true;
|
|
|
|
|
|
|
|
public bool EnableSearchHistory { get; set; } = true;
|
|
|
|
}
|
|
|
|
}
|