mirror of
https://gitlab.com/walljm/dynamicbible.git
synced 2025-07-28 09:59:50 -04:00
21 lines
441 B
C#
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>();
|
|
}
|
|
}
|