SUBD/Forum/ForumDataModels/IRoleModel.cs
2023-04-28 19:30:16 +04:00

14 lines
229 B
C#

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