adds Autocomplete property

This commit is contained in:
Cody 2024-01-15 09:30:37 -08:00 committed by GitHub
parent 439866216c
commit e0cdfcf403
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -78,5 +78,11 @@ namespace Oqtane.Models
/// Optional number of rows (textarea) /// Optional number of rows (textarea)
/// </summary> /// </summary>
public int Rows { get; set; } public int Rows { get; set; }
/// <summary>
/// Autocomplete setting for the property.
/// If set, enable autocomplete for the corresponding input field.
/// </summary>
public string Autocomplete { get; set; }
} }
} }