dorset-backend-testapplication/Models/Book_description.cs

13 lines
318 B
C#

using System.ComponentModel.DataAnnotations;
namespace TestApplication.Models
{
public class Book_description
{
[Key]
public int id { get; set; }
public int book_id { get; set; }
public string book_name { get; set; }
public string book_description { get; set; }
}
}