DotBased/DotBased.AspNet.Authority/Repositories/IGroupRepository.cs
2024-12-25 22:50:04 +01:00

6 lines
155 B
C#

namespace DotBased.AspNet.Authority.Repositories;
public interface IGroupRepository<TGroup, TId> where TGroup : class where TId : IEquatable<TId>
{
}