SUBD/ForumDataModels/Models/ICategoryModel.cs

15 lines
276 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 ICategoryModel : IId
{
string Name { get; }
string Description { get; }
}
}