PIbd-23_Sergunov_M.A._SUBD/BookShop/BookShopContracts/ViewModels/BookViewModel.cs

25 lines
664 B
C#

using BookShopDataModels.Models;
using System.ComponentModel;
namespace BookShopContracts.ViewModels
{
public class BookViewModel: IBookModel
{
public int Id { get; set; }
[DisplayName("Название")]
public string BookName { get; set; } = string.Empty;
[DisplayName("Стоимость")]
public double Cost { get; set; }
public int Count { get; set; }
public int GenreId { get; set; }
public string GenreName { get; set; } = string.Empty;
public Dictionary<int, IAuthorModel> BookAuthors { get; set; } = new();
}
}