SUBD/ForumContracts/SearchModels/QuestionSearchModel.cs

19 lines
462 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 QuestionSearchModel
{
public string? QuestionDes { get; set; }
public DateTime? CreateDate { get; set; }
public int? UserId { get; set; }
public int? CategoryId { get; set; }
public int? Id { get; set; }
}
}