mirror of
https://github.com/bitwarden/server.git
synced 2026-02-13 12:23:29 +08:00
10 lines
187 B
C#
10 lines
187 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Models.Table.Provider;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Repositories
|
|||
|
|
{
|
|||
|
|
public interface IProviderOrganizationRepository : IRepository<Provider, Guid>
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|