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

18 lines
414 B
C#

using BookShopDataModels.Models;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BookShopContracts.ViewModels
{
public class GenreViewModel: IGenreModel
{
public int Id { get; set; }
[DisplayName("Жанр")]
public string GenreName { get; set; } = string.Empty;
}
}