mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
13 lines
203 B
C#
13 lines
203 B
C#
using Microsoft.AspNetCore.Identity;
|
|
|
|
namespace QRBee.Api.Services
|
|
{
|
|
public interface IStorage
|
|
{
|
|
|
|
void PutUserInfo(UserInfo info);
|
|
UserInfo GetUserInfo(string email);
|
|
|
|
}
|
|
}
|