You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
786 B
24 lines
786 B
using System;
|
|
namespace MyLibraryEntities
|
|
{
|
|
public class BookEntity
|
|
{
|
|
public string Id { get; set; }
|
|
public string Title { get; set; }
|
|
public ICollection<string> Publishers { get; set; } = new List<string>();
|
|
public DateTime PublishDate { get; set; }
|
|
public string ISBN13 { get; set; }
|
|
public ICollection<string> Series { get; set; } = new List<string>();
|
|
public int NbPages { get; set; }
|
|
public string? Format { get; set; }
|
|
public Languages Language { get; set; }
|
|
public List<ContributorEntity> Contributors { get; set; }
|
|
public List<WorkEntity> Works { get; } = new ();
|
|
public List<AuthorEntity> Authors { get; } = new ();
|
|
public string SmallImage { get; set; }
|
|
public string MediumImage { get; set; }
|
|
public string LargeImage { get; set; }
|
|
}
|
|
}
|
|
|