SUBD/ForumContracts/SearchModels/CategorySearchModel.cs

17 lines
368 B
C#
Raw Normal View History

2023-04-16 21:46:06 +04:00
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; }
}
}