mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
11 lines
188 B
C#
11 lines
188 B
C#
namespace QRBee.Api.Services.Database
|
|
{
|
|
public interface IStorage
|
|
{
|
|
|
|
Task<string> PutUserInfo(UserInfo info);
|
|
Task<UserInfo> GetUserInfo(string email);
|
|
|
|
}
|
|
}
|