PIbd-22-Ismailov_SUBD/BlogDataModels/BlogContracts/SearchModels/CategorySearchModel.cs
2023-09-06 22:02:39 +04:00

15 lines
289 B
C#

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