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

16 lines
331 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 TopicSearchModel
{
public int? Id { get; set; }
public string? Name { get; set; }
public int? CategoryId { get; set; }
}
}