Добавлена сущность Role

This commit is contained in:
FLARJ 2023-04-05 20:38:18 +04:00
parent 7e19243888
commit 0ba6153716

View File

@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FurnitureFactoryDataModels.Models
{
internal interface IRoleModel : IId
{
string Name { get; }
}
}