mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-06-30 18:42:56 +00:00
7 lines
163 B
C#
7 lines
163 B
C#
using CleanArchitecture.Domain.Entities;
|
|
|
|
namespace CleanArchitecture.Domain.Interfaces.Repositories;
|
|
|
|
public interface ITenantRepository : IRepository<Tenant>
|
|
{
|
|
} |