added validation support for user profile fields

This commit is contained in:
sbwalker
2023-05-25 16:16:16 -04:00
parent 261adefbc7
commit cc4c47c3ee
7 changed files with 322 additions and 246 deletions

View File

@ -68,5 +68,10 @@ namespace Oqtane.Models
/// This gives possible values for dropdown input fields.
/// </summary>
public string Options { get; set; }
/// <summary>
/// Optional RegExp validation expression
/// </summary>
public string Validation { get; set; }
}
}