mirror of
https://github.com/WowUp/WowUp.git
synced 2026-04-23 15:27:03 -04:00
Remove the WPF app. Create custom search component. Add filtering to the My Addons page. Use the new component on the Get Addons page.
13 lines
227 B
C#
13 lines
227 B
C#
namespace WowUp.WPF.Models.Events
|
|
{
|
|
public class SearchInputEventArgs
|
|
{
|
|
public string Text { get; set; }
|
|
|
|
public SearchInputEventArgs(string text)
|
|
{
|
|
Text = text;
|
|
}
|
|
}
|
|
}
|