mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-25 08:19:50 -04:00
18 lines
360 B
C#
18 lines
360 B
C#
using System.Collections.Generic;
|
|
|
|
namespace DynamicBibleUtility
|
|
{
|
|
public class Index : List<IndexItem>
|
|
{
|
|
public IndexItem GetItem(string word)
|
|
{
|
|
return this.Find(i => i.w == word);
|
|
}
|
|
}
|
|
|
|
public class IndexItem
|
|
{
|
|
public string w = "";
|
|
public List<string> r = new List<string>();
|
|
}
|
|
} |