mirror of
https://gitee.com/dotnetchina/OpenAuth.Net.git
synced 2025-05-12 00:28:05 +08:00
12 lines
231 B
C#
12 lines
231 B
C#
using System.Collections.Generic;
|
|
using OpenAuth.Domain.Model;
|
|
|
|
namespace OpenAuth.Domain.Interface
|
|
{
|
|
public interface IUserRepository
|
|
{
|
|
User FindByAccount(string account);
|
|
User FindById(string id);
|
|
|
|
}
|
|
} |