SUBD/ForumContracts/SearchModels/CategorySearchModel.cs
2023-04-16 21:46:06 +04:00

17 lines
368 B
C#

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