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

16 lines
331 B
C#

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