mirror of
https://github.com/alex289/CleanArchitecture.git
synced 2025-07-01 11:02:57 +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>
|
|
{
|
|
} |