PIAPS_CW/DataModels/Models/IRole.cs

13 lines
210 B
C#
Raw Normal View History

2024-06-04 11:03:49 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DataModels.Models
{
public interface IRole : IId
{
string Name { get; }
}
}