mirror of
https://github.com/bitwarden/server.git
synced 2026-02-01 06:33:17 +08:00
10 lines
199 B
C#
10 lines
199 B
C#
|
|
using System;
|
|||
|
|
using Bit.Core.Models.Table.Provider;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Repositories
|
|||
|
|
{
|
|||
|
|
public interface IProviderOrganizationProviderUserRepository : IRepository<Provider, Guid>
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|