MVCPostall/BaseDomain/Repositories/Contracts/IRepoReadOnly.cs
2025-01-26 22:22:36 -03:00

9 lines
256 B
C#

namespace DIC.Test.Data.Contracts
{
public interface IRepoReadOnly<T, TId> : IRepoQuery<T, TId>
where T : class
where TId : struct
{
}
}