18 lines
414 B
C#
18 lines
414 B
C#
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; }
|
|
}
|
|
}
|