mirror of
https://github.com/bitwarden/server.git
synced 2026-02-03 23:53:19 +08:00
9 lines
150 B
C#
9 lines
150 B
C#
|
|
using Bit.Core.Models.Table;
|
|||
|
|
|
|||
|
|
namespace Bit.Core.Repositories
|
|||
|
|
{
|
|||
|
|
public interface ISsoUserRepository : IRepository<SsoUser, long>
|
|||
|
|
{
|
|||
|
|
}
|
|||
|
|
}
|