PIbd-22-Ismailov_SUBD/BlogDataModels/BlogContracts/SearchModels/CategorySearchModel.cs

15 lines
289 B
C#
Raw Normal View History

2023-09-06 20:46:57 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2023-09-06 22:02:39 +04:00
namespace BlogContracts.SearchModels
2023-09-06 20:46:57 +04:00
{
public class CategorySearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
}
}