include User Settings when calling UserService

This commit is contained in:
sbwalker
2023-09-01 13:16:39 -04:00
parent f40f3f934f
commit d491aeeba6
2 changed files with 22 additions and 1 deletions

View File

@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
namespace Oqtane.Models
@ -105,5 +106,11 @@ namespace Oqtane.Models
/// </summary>
[NotMapped]
public bool EmailConfirmed { get; set; }
/// <summary>
/// Public User Settings
/// </summary>
[NotMapped]
public Dictionary<string, string> Settings { get; set; }
}
}