SUBD/ForumDataModels/Models/IQuestionModel.cs

17 lines
335 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
{
public interface IQuestionModel
{
string Question { get; }
DateTime CreateDate { get; }
int UserId { get; }
int CategoryId { get; }
}
}