SUBD/Forum/ForumDataModels/ITopicModel.cs
2023-05-01 19:05:49 +04:00

16 lines
263 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ForumDataModels
{
public interface ITopicModel : IId
{
string Name { get; }
int CategoryId { get; }
}
}