SUBD/ForumContracts/SearchModels/QuestionSearchModel.cs
2023-05-05 18:44:46 +04:00

21 lines
556 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 DateTime? DateFrom { get; set; }
public DateTime? DateTo { get; set; }
public int? UserId { get; set; }
public int? CategoryId { get; set; }
public int? Id { get; set; }
}
}