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

22 lines
572 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Church.Net.Entity
{
public class BibleStudy
{
public DateTime Date { get; set; }
public string Topic { get; set; }
[ForeignKey("Book")]
public int BookId { get; set; }
public BibleBook Book { get; set; }
public string Chapter { get; set; }
public int VerseStart { get; set; }
public int VerseEnd { get; set; }
}
}