2022-09-08 08:04:32 -07:00

19 lines
449 B
C#

using Church.Net.Entity.Interface;
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; }
}
}