PIbd-23_Sergunov_M.A._SUBD/BookShop/BookShopContracts/SearchModels/BookSearchModel.cs

15 lines
293 B
C#
Raw Normal View History

2023-05-13 14:30:05 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BookShopContracts.SearchModels
{
public class BookSearchModel
{
public int? Id { get; set; }
public string? BookName { get; set; }
}
}