20 lines
381 B
C#
20 lines
381 B
C#
namespace Lux.UI.Components.Pages
|
|
{
|
|
public partial class Resources
|
|
{
|
|
#region Protected Methods
|
|
|
|
protected void ResetSearch()
|
|
{
|
|
searchVal = "";
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
|
|
#region Private Properties
|
|
|
|
private string searchVal { get; set; } = string.Empty;
|
|
|
|
#endregion Private Properties
|
|
}
|
|
} |