2023-04-16 21:10:11 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace ForumDataModels.Models
|
|
|
|
|
{
|
2023-04-16 21:46:06 +04:00
|
|
|
|
public interface IQuestionModel : IId
|
2023-04-16 21:10:11 +04:00
|
|
|
|
{
|
2023-04-16 22:36:22 +04:00
|
|
|
|
string QuestionDes { get; }
|
2023-04-16 21:10:11 +04:00
|
|
|
|
DateTime CreateDate { get; }
|
|
|
|
|
int UserId { get; }
|
|
|
|
|
int CategoryId { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|