23 lines
476 B
C#
23 lines
476 B
C#
using DataModels.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contracts.BindingModels
|
|
{
|
|
public class BookBindingModel : IBook
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Readers { get; set; } = string.Empty;
|
|
|
|
public string Shape { get; set; } = string.Empty;
|
|
|
|
public string Annotation { get; set; } = string.Empty;
|
|
|
|
public int Id { get; set; }
|
|
}
|
|
}
|