using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Oqtane.Models { public class UserValidateResult { public bool Succeeded { get; set; } public IDictionary Errors { get; set; } = new Dictionary(); } }