props/Props/server/Models/ApplicationPreferences.cs

14 lines
304 B
C#
Raw Normal View History

using System.ComponentModel.DataAnnotations;
namespace Props.Shared.Models
{
public class ApplicationPreferences
{
public int Id { get; set; }
[Required]
public string ApplicationUserId { get; set; }
public bool EnableSearchHistory { get; set; } = true;
}
}