Zhelovanov_Dmitrii_COP/Contracts/SearchModels/BookSearchModel.cs

15 lines
260 B
C#
Raw Permalink Normal View History

2023-11-30 23:20:29 +04:00
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; }
}
}