BookTextData.cs

17 lines | 362 B Blame History Raw Download
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace LibraryText.Entities
{
    public class BookTextData
    {
        public int Id { set; get; }
        public string Directory { set; get; }
        public string Title { set; get; }
        public string Text { set; get; }
    }
}