Files
WowUp/WowUp.WPF/Models/Events/SearchInputEventArgs.cs
jliddev 2a772aeb25 List Searching
Remove the WPF app.
Create custom search component.
Add filtering to the My Addons page.
Use the new component on the Get Addons page.
2020-08-25 15:14:38 -05:00

13 lines
227 B
C#

namespace WowUp.WPF.Models.Events
{
public class SearchInputEventArgs
{
public string Text { get; set; }
public SearchInputEventArgs(string text)
{
Text = text;
}
}
}