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

18 lines
414 B
C#
Raw Normal View History

using BookShopDataModels.Models;
2023-05-13 14:30:05 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
2023-05-13 14:30:05 +04:00
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;
}
}