Zhelovanov_Dmitrii_COP/Contracts/SearchModels/BookSearchModel.cs
2023-11-30 23:20:29 +04:00

15 lines
260 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Contracts.SearchModels
{
public class BookSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}