using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Church.Net.Entity { public class BibleBook { public int Id { get; set; } public string Chinese { get; set; } public string ChineseShort { get; set; } public string English { get; set; } public string EnglishShort { get; set; } } }