mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 09:15:33 +00:00
11 lines
306 B
C#
11 lines
306 B
C#
namespace HaWeb.SearchHelpers;
|
|
|
|
public class SeachableItem : ISearchable {
|
|
public string Index { get; private set; }
|
|
public string SearchText { get; private set; }
|
|
|
|
public SeachableItem(string index, string searchtext) {
|
|
this.Index = index;
|
|
this.SearchText = searchtext;
|
|
}
|
|
} |