21 lines
441 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace DynamicBibleUtility
{
public class Index : List<IndexItem>
{
public IndexItem GetItem(string word)
{
return this.Find(i => i.word == word);
}
}
public class IndexItem
{
public string word = "";
public List<string> refs = new List<string>();
}
}