10 lines
187 B
C#
10 lines
187 B
C#
|
namespace BookShopContracts.SearchModels
|
|||
|
{
|
|||
|
public class GenreSearchModel
|
|||
|
{
|
|||
|
public int? Id { get; set; }
|
|||
|
|
|||
|
public string? GenreName { get; set; }
|
|||
|
}
|
|||
|
}
|