SUBD/ForumDataModels/Models/IQuestionModel.cs

17 lines
344 B
C#
Raw Normal View History

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
{
string QuestionDes { get; }
DateTime CreateDate { get; }
int UserId { get; }
int CategoryId { get; }
}
}